Title: [96668] trunk/Source/WebCore
Revision
96668
Author
wei...@apple.com
Date
2011-10-04 18:10:28 -0700 (Tue, 04 Oct 2011)

Log Message

OVERRIDE seems to not be working for Windows. Remove it for now.

* dom/Document.h:
* workers/WorkerContext.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96667 => 96668)


--- trunk/Source/WebCore/ChangeLog	2011-10-05 00:52:50 UTC (rev 96667)
+++ trunk/Source/WebCore/ChangeLog	2011-10-05 01:10:28 UTC (rev 96668)
@@ -1,5 +1,12 @@
 2011-10-04  Sam Weinig  <s...@webkit.org>
 
+        OVERRIDE seems to not be working for Windows. Remove it for now.
+
+        * dom/Document.h:
+        * workers/WorkerContext.h:
+
+2011-10-04  Sam Weinig  <s...@webkit.org>
+
         Wean ContentSecurityPolicy from the Document
         https://bugs.webkit.org/show_bug.cgi?id=69387
 

Modified: trunk/Source/WebCore/dom/Document.h (96667 => 96668)


--- trunk/Source/WebCore/dom/Document.h	2011-10-05 00:52:50 UTC (rev 96667)
+++ trunk/Source/WebCore/dom/Document.h	2011-10-05 01:10:28 UTC (rev 96668)
@@ -612,7 +612,7 @@
 
     virtual String userAgent(const KURL&) const;
 
-    virtual void disableEval() OVERRIDE;
+    virtual void disableEval();
 
     CSSStyleSheet* pageUserSheet();
     void clearPageUserSheet();

Modified: trunk/Source/WebCore/workers/WorkerContext.h (96667 => 96668)


--- trunk/Source/WebCore/workers/WorkerContext.h	2011-10-05 00:52:50 UTC (rev 96667)
+++ trunk/Source/WebCore/workers/WorkerContext.h	2011-10-05 01:10:28 UTC (rev 96668)
@@ -77,7 +77,7 @@
 
         virtual String userAgent(const KURL&) const;
 
-        virtual void disableEval() OVERRIDE;
+        virtual void disableEval();
 
         WorkerScriptController* script() { return m_script.get(); }
         void clearScript() { m_script.clear(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to