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

Unified Diff: Source/web/StorageAreaProxy.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | « Source/web/SpeechRecognitionClientProxy.cpp ('k') | Source/web/StorageAreaProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/StorageAreaProxy.h
diff --git a/Source/web/StorageAreaProxy.h b/Source/web/StorageAreaProxy.h
index 464682535a668a1f2ad8154e01eec0cdfa091fb3..ba4ec45bfee6bb1be050d15cf6123551cfc71b9a 100644
--- a/Source/web/StorageAreaProxy.h
+++ b/Source/web/StorageAreaProxy.h
@@ -28,7 +28,7 @@
#include "core/storage/StorageArea.h"
-namespace WebKit {
+namespace blink {
class WebStorageArea;
class WebStorageNamespace;
}
@@ -44,7 +44,7 @@ class Storage;
class StorageAreaProxy : public StorageArea {
public:
- StorageAreaProxy(PassOwnPtr<WebKit::WebStorageArea>, StorageType);
+ StorageAreaProxy(PassOwnPtr<blink::WebStorageArea>, StorageType);
virtual ~StorageAreaProxy();
// The HTML5 DOM Storage API
@@ -62,16 +62,16 @@ public:
static void dispatchLocalStorageEvent(
const String& key, const String& oldValue, const String& newValue,
- SecurityOrigin*, const KURL& pageURL, WebKit::WebStorageArea* sourceAreaInstance, bool originatedInProcess);
+ SecurityOrigin*, const KURL& pageURL, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess);
static void dispatchSessionStorageEvent(
const String& key, const String& oldValue, const String& newValue,
- SecurityOrigin*, const KURL& pageURL, const WebKit::WebStorageNamespace&,
- WebKit::WebStorageArea* sourceAreaInstance, bool originatedInProcess);
+ SecurityOrigin*, const KURL& pageURL, const blink::WebStorageNamespace&,
+ blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess);
private:
- static bool isEventSource(Storage*, WebKit::WebStorageArea* sourceAreaInstance);
+ static bool isEventSource(Storage*, blink::WebStorageArea* sourceAreaInstance);
- OwnPtr<WebKit::WebStorageArea> m_storageArea;
+ OwnPtr<blink::WebStorageArea> m_storageArea;
StorageType m_storageType;
mutable bool m_canAccessStorageCachedResult;
mutable Frame* m_canAccessStorageCachedFrame;
« no previous file with comments | « Source/web/SpeechRecognitionClientProxy.cpp ('k') | Source/web/StorageAreaProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698