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

Unified Diff: content/common/indexed_db/indexed_db_key_path.cc

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
« no previous file with comments | « content/common/indexed_db/indexed_db_key_path.h ('k') | content/common/indexed_db/indexed_db_key_range.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_key_path.cc
diff --git a/content/common/indexed_db/indexed_db_key_path.cc b/content/common/indexed_db/indexed_db_key_path.cc
index be6adfd31ff98be162fca79479da6b0bb64ec736..b01de7340d60961efc9c2c8c9bb127ed5d647174 100644
--- a/content/common/indexed_db/indexed_db_key_path.cc
+++ b/content/common/indexed_db/indexed_db_key_path.cc
@@ -8,9 +8,9 @@
namespace content {
-using WebKit::WebIDBKeyPathTypeArray;
-using WebKit::WebIDBKeyPathTypeNull;
-using WebKit::WebIDBKeyPathTypeString;
+using blink::WebIDBKeyPathTypeArray;
+using blink::WebIDBKeyPathTypeNull;
+using blink::WebIDBKeyPathTypeString;
IndexedDBKeyPath::IndexedDBKeyPath() : type_(WebIDBKeyPathTypeNull) {}
@@ -23,12 +23,12 @@ IndexedDBKeyPath::IndexedDBKeyPath(const std::vector<string16>& array)
IndexedDBKeyPath::~IndexedDBKeyPath() {}
const std::vector<string16>& IndexedDBKeyPath::array() const {
- DCHECK(type_ == WebKit::WebIDBKeyPathTypeArray);
+ DCHECK(type_ == blink::WebIDBKeyPathTypeArray);
return array_;
}
const string16& IndexedDBKeyPath::string() const {
- DCHECK(type_ == WebKit::WebIDBKeyPathTypeString);
+ DCHECK(type_ == blink::WebIDBKeyPathTypeString);
return string_;
}
« no previous file with comments | « content/common/indexed_db/indexed_db_key_path.h ('k') | content/common/indexed_db/indexed_db_key_range.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698