Title: [127401] trunk/Source/WebKit2
Revision
127401
Author
[email protected]
Date
2012-09-02 23:57:40 -0700 (Sun, 02 Sep 2012)

Log Message

WK2: Build failure on SnowLeopard after r127384
https://bugs.webkit.org/show_bug.cgi?id=95665

Reviewed by Dan Bernstein.

Add SandboxExtension::consumePermanently(const Handle&) for !ENABLE(WEB_PROCESS_SANDBOX) to fix link error.

* Shared/SandboxExtension.h:
(WebKit::SandboxExtension::consumePermanently):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (127400 => 127401)


--- trunk/Source/WebKit2/ChangeLog	2012-09-03 06:03:32 UTC (rev 127400)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-03 06:57:40 UTC (rev 127401)
@@ -1,3 +1,15 @@
+2012-09-02  Kenichi Ishibashi  <[email protected]>
+
+        WK2: Build failure on SnowLeopard after r127384
+        https://bugs.webkit.org/show_bug.cgi?id=95665
+
+        Reviewed by Dan Bernstein.
+
+        Add SandboxExtension::consumePermanently(const Handle&) for !ENABLE(WEB_PROCESS_SANDBOX) to fix link error.
+
+        * Shared/SandboxExtension.h:
+        (WebKit::SandboxExtension::consumePermanently):
+
 2012-09-02  Ryuan Choi  <[email protected]>
 
         [EFL][WK2] Keep activePopupMenu to call valueChangedForPopupMenu() outside showPopupMenu()

Modified: trunk/Source/WebKit2/Shared/SandboxExtension.h (127400 => 127401)


--- trunk/Source/WebKit2/Shared/SandboxExtension.h	2012-09-03 06:03:32 UTC (rev 127400)
+++ trunk/Source/WebKit2/Shared/SandboxExtension.h	2012-09-03 06:57:40 UTC (rev 127401)
@@ -130,6 +130,7 @@
 inline bool SandboxExtension::invalidate() { return true; }
 inline bool SandboxExtension::consume() { return true; }
 inline bool SandboxExtension::consumePermanently() { return true; }
+inline bool SandboxExtension::consumePermanently(const Handle&) { return true; }
 #endif
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to