Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: third_party/WebKit/public/web/WebStorageEventDispatcher.h

Issue 1742863002: Remove unnused originatedInProcess parameter in blink::WebStorageEventDispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebStorageEventDispatcher.h
diff --git a/third_party/WebKit/public/web/WebStorageEventDispatcher.h b/third_party/WebKit/public/web/WebStorageEventDispatcher.h
index aa681fd23a3cb6729c6e88f891c89589801541ab..4090e88f23eaefae219bf11a083d2d01d0618ba7 100644
--- a/third_party/WebKit/public/web/WebStorageEventDispatcher.h
+++ b/third_party/WebKit/public/web/WebStorageEventDispatcher.h
@@ -45,15 +45,14 @@ public:
BLINK_EXPORT static void dispatchLocalStorageEvent(
const WebString& key, const WebString& oldValue,
const WebString& newValue, const WebURL& origin,
- const WebURL& pageUrl, WebStorageArea* sourceAreaInstance,
- bool originatedInProcess);
+ const WebURL& pageUrl, WebStorageArea* sourceAreaInstance);
// Dispatch a session storage event to appropiate documents.
BLINK_EXPORT static void dispatchSessionStorageEvent(
const WebString& key, const WebString& oldValue,
const WebString& newValue, const WebURL& origin,
const WebURL& pageUrl, const WebStorageNamespace&,
- WebStorageArea* sourceAreaInstance, bool originatedInProcess);
+ WebStorageArea* sourceAreaInstance);
private:
WebStorageEventDispatcher() { }
« no previous file with comments | « third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698