Title: [152775] trunk/Source/WebCore
Revision
152775
Author
[email protected]
Date
2013-07-17 01:40:12 -0700 (Wed, 17 Jul 2013)

Log Message

Remove unused member variable m_domURL from WorkerGlobalScope
https://bugs.webkit.org/show_bug.cgi?id=118784

Reviewed by Christophe Dumez.

WorkerContext::webkitURL() was removed in r107082, and this was the
only place where the member variable |m_domURL| in WorkerContext was
mutated. This variable is no longer needed and so it should be removed.

No behavior change.

* workers/WorkerGlobalScope.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152774 => 152775)


--- trunk/Source/WebCore/ChangeLog	2013-07-17 08:37:03 UTC (rev 152774)
+++ trunk/Source/WebCore/ChangeLog	2013-07-17 08:40:12 UTC (rev 152775)
@@ -1,3 +1,18 @@
+2013-07-17  Kwang Yul Seo  <[email protected]>
+
+        Remove unused member variable m_domURL from WorkerGlobalScope
+        https://bugs.webkit.org/show_bug.cgi?id=118784
+
+        Reviewed by Christophe Dumez.
+
+        WorkerContext::webkitURL() was removed in r107082, and this was the
+        only place where the member variable |m_domURL| in WorkerContext was
+        mutated. This variable is no longer needed and so it should be removed.
+
+        No behavior change.
+
+        * workers/WorkerGlobalScope.h:
+
 2013-07-17  Mihai Maerean  <[email protected]>
 
         ASSERTION FAILED: layoutState->m_renderer == this in WebCore::RenderBlock::offsetFromLogicalTopOfFirstPage

Modified: trunk/Source/WebCore/workers/WorkerGlobalScope.h (152774 => 152775)


--- trunk/Source/WebCore/workers/WorkerGlobalScope.h	2013-07-17 08:37:03 UTC (rev 152774)
+++ trunk/Source/WebCore/workers/WorkerGlobalScope.h	2013-07-17 08:40:12 UTC (rev 152775)
@@ -48,7 +48,6 @@
 namespace WebCore {
 
     class Blob;
-    class DOMURL;
     class ScheduledAction;
     class WorkerInspectorController;
     class WorkerLocation;
@@ -174,9 +173,6 @@
         OwnPtr<WorkerScriptController> m_script;
         WorkerThread* m_thread;
 
-#if ENABLE(BLOB)
-        mutable RefPtr<DOMURL> m_domURL;
-#endif
 #if ENABLE(INSPECTOR)
         OwnPtr<WorkerInspectorController> m_workerInspectorController;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to