Title: [161158] trunk/Source/WebKit2
Revision
161158
Author
ander...@apple.com
Date
2013-12-30 15:57:16 -0800 (Mon, 30 Dec 2013)

Log Message

Fix.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::plugInDidStartFromOrigin):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (161157 => 161158)


--- trunk/Source/WebKit2/ChangeLog	2013-12-30 23:46:31 UTC (rev 161157)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-30 23:57:16 UTC (rev 161158)
@@ -1,5 +1,12 @@
 2013-12-30  Anders Carlsson  <ander...@apple.com>
 
+        Fix.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::plugInDidStartFromOrigin):
+
+2013-12-30  Anders Carlsson  <ander...@apple.com>
+
         Move more of Connection over to STL threading primitives
         https://bugs.webkit.org/show_bug.cgi?id=126308
 

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (161157 => 161158)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2013-12-30 23:46:31 UTC (rev 161157)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2013-12-30 23:57:16 UTC (rev 161158)
@@ -821,7 +821,7 @@
     // comes back from the parent process. Temporarily add this hash to the list with a thirty
     // second timeout. That way, even if the parent decides not to add it, we'll only be
     // incorrect for a little while.
-    m_plugInAutoStartOriginHashes.set(plugIn    OriginHash, currentTime() + 30 * 1000);
+    m_plugInAutoStartOriginHashes.set(plugInOriginHash, currentTime() + 30 * 1000);
 
     parentProcessConnection()->send(Messages::WebContext::AddPlugInAutoStartOriginHash(pageOrigin, plugInOriginHash), 0);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to