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

Unified Diff: content/renderer/dom_storage/webstoragearea_impl.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
Index: content/renderer/dom_storage/webstoragearea_impl.h
diff --git a/content/renderer/dom_storage/webstoragearea_impl.h b/content/renderer/dom_storage/webstoragearea_impl.h
index 7854562603ee24192b4d2c72c5a241c00226db0e..24056ce26e57f79816ab4ba1918411895f9e2382 100644
--- a/content/renderer/dom_storage/webstoragearea_impl.h
+++ b/content/renderer/dom_storage/webstoragearea_impl.h
@@ -16,7 +16,7 @@ namespace content {
class DOMStorageCachedArea;
-class WebStorageAreaImpl : public WebKit::WebStorageArea {
+class WebStorageAreaImpl : public blink::WebStorageArea {
public:
static WebStorageAreaImpl* FromConnectionId(int id);
@@ -25,14 +25,14 @@ class WebStorageAreaImpl : public WebKit::WebStorageArea {
// See WebStorageArea.h for documentation on these functions.
virtual unsigned length();
- virtual WebKit::WebString key(unsigned index);
- virtual WebKit::WebString getItem(const WebKit::WebString& key);
+ virtual blink::WebString key(unsigned index);
+ virtual blink::WebString getItem(const blink::WebString& key);
virtual void setItem(
- const WebKit::WebString& key, const WebKit::WebString& value,
- const WebKit::WebURL& page_url, WebStorageArea::Result& result);
+ const blink::WebString& key, const blink::WebString& value,
+ const blink::WebURL& page_url, WebStorageArea::Result& result);
virtual void removeItem(
- const WebKit::WebString& key, const WebKit::WebURL& page_url);
- virtual void clear(const WebKit::WebURL& url);
+ const blink::WebString& key, const blink::WebURL& page_url);
+ virtual void clear(const blink::WebURL& url);
virtual size_t memoryBytesUsedByCache() const;
private:
« no previous file with comments | « content/renderer/dom_storage/dom_storage_dispatcher.cc ('k') | content/renderer/dom_storage/webstoragearea_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698