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

Unified Diff: content/common/indexed_db/indexed_db_key.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/common/indexed_db/indexed_db_key.h
diff --git a/content/common/indexed_db/indexed_db_key.h b/content/common/indexed_db/indexed_db_key.h
index f453b3ab865818d86c645629b332d286b74b0824..8cfc67f1c2178045c0677b610283eba122f73dd1 100644
--- a/content/common/indexed_db/indexed_db_key.h
+++ b/content/common/indexed_db/indexed_db_key.h
@@ -13,7 +13,7 @@
#include "content/common/content_export.h"
#include "third_party/WebKit/public/platform/WebIDBTypes.h"
-namespace WebKit {
+namespace blink {
class WebIDBKey;
}
@@ -23,12 +23,12 @@ class CONTENT_EXPORT IndexedDBKey {
public:
typedef std::vector<IndexedDBKey> KeyArray;
- IndexedDBKey(); // Defaults to WebKit::WebIDBKeyTypeInvalid.
- IndexedDBKey(WebKit::WebIDBKeyType); // must be Null or Invalid
+ IndexedDBKey(); // Defaults to blink::WebIDBKeyTypeInvalid.
+ IndexedDBKey(blink::WebIDBKeyType); // must be Null or Invalid
explicit IndexedDBKey(const KeyArray& array);
explicit IndexedDBKey(const string16& str);
IndexedDBKey(double number,
- WebKit::WebIDBKeyType type); // must be date or number
+ blink::WebIDBKeyType type); // must be date or number
~IndexedDBKey();
bool IsValid() const;
@@ -37,7 +37,7 @@ class CONTENT_EXPORT IndexedDBKey {
bool IsLessThan(const IndexedDBKey& other) const;
bool IsEqual(const IndexedDBKey& other) const;
- WebKit::WebIDBKeyType type() const { return type_; }
+ blink::WebIDBKeyType type() const { return type_; }
const std::vector<IndexedDBKey>& array() const { return array_; }
const string16& string() const { return string_; }
double date() const { return date_; }
@@ -46,7 +46,7 @@ class CONTENT_EXPORT IndexedDBKey {
size_t size_estimate() const { return size_estimate_; }
private:
- WebKit::WebIDBKeyType type_;
+ blink::WebIDBKeyType type_;
std::vector<IndexedDBKey> array_;
string16 string_;
double date_;
« no previous file with comments | « content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc ('k') | content/common/indexed_db/indexed_db_key.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698