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

Unified Diff: content/child/indexed_db/indexed_db_key_builders.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/child/indexed_db/indexed_db_key_builders.h
diff --git a/content/child/indexed_db/indexed_db_key_builders.h b/content/child/indexed_db/indexed_db_key_builders.h
index e15b63bd47a02ffb5b68b998c7680a9cdc77b694..5a51a8a4c6678c2f9e23580fa7a085f90738e7aa 100644
--- a/content/child/indexed_db/indexed_db_key_builders.h
+++ b/content/child/indexed_db/indexed_db_key_builders.h
@@ -13,7 +13,7 @@
#include "third_party/WebKit/public/platform/WebIDBKeyPath.h"
#include "third_party/WebKit/public/platform/WebIDBKeyRange.h"
-namespace WebKit {
+namespace blink {
class WebIDBKey;
}
@@ -21,27 +21,27 @@ namespace content {
class CONTENT_EXPORT IndexedDBKeyBuilder {
public:
- static IndexedDBKey Build(const WebKit::WebIDBKey& key);
+ static IndexedDBKey Build(const blink::WebIDBKey& key);
};
class CONTENT_EXPORT WebIDBKeyBuilder {
public:
- static WebKit::WebIDBKey Build(const content::IndexedDBKey& key);
+ static blink::WebIDBKey Build(const content::IndexedDBKey& key);
};
class CONTENT_EXPORT IndexedDBKeyRangeBuilder {
public:
- static IndexedDBKeyRange Build(const WebKit::WebIDBKeyRange& key_range);
+ static IndexedDBKeyRange Build(const blink::WebIDBKeyRange& key_range);
};
class CONTENT_EXPORT IndexedDBKeyPathBuilder {
public:
- static IndexedDBKeyPath Build(const WebKit::WebIDBKeyPath& key_path);
+ static IndexedDBKeyPath Build(const blink::WebIDBKeyPath& key_path);
};
class CONTENT_EXPORT WebIDBKeyPathBuilder {
public:
- static WebKit::WebIDBKeyPath Build(const IndexedDBKeyPath& key_path);
+ static blink::WebIDBKeyPath Build(const IndexedDBKeyPath& key_path);
};
} // namespace content
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher_unittest.cc ('k') | content/child/indexed_db/indexed_db_key_builders.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698