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

Unified Diff: content/common/indexed_db/indexed_db_key_unittest.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_range.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('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_unittest.cc
diff --git a/content/common/indexed_db/indexed_db_key_unittest.cc b/content/common/indexed_db/indexed_db_key_unittest.cc
index 3c5191513c7d30ed79c3c2f6dc6f635fe0a7653e..7116062548d05a7664d73e89155c93268dfbfc7c 100644
--- a/content/common/indexed_db/indexed_db_key_unittest.cc
+++ b/content/common/indexed_db/indexed_db_key_unittest.cc
@@ -21,15 +21,15 @@ TEST(IndexedDBKeyTest, KeySizeEstimates) {
keys.push_back(IndexedDBKey());
estimates.push_back(static_cast<size_t>(16)); // Overhead.
- keys.push_back(IndexedDBKey(WebKit::WebIDBKeyTypeNull));
+ keys.push_back(IndexedDBKey(blink::WebIDBKeyTypeNull));
estimates.push_back(static_cast<size_t>(16));
double number = 3.14159;
- keys.push_back(IndexedDBKey(number, WebKit::WebIDBKeyTypeNumber));
+ keys.push_back(IndexedDBKey(number, blink::WebIDBKeyTypeNumber));
estimates.push_back(static_cast<size_t>(24)); // Overhead + sizeof(double).
double date = 1370884329.0;
- keys.push_back(IndexedDBKey(date, WebKit::WebIDBKeyTypeDate));
+ keys.push_back(IndexedDBKey(date, blink::WebIDBKeyTypeDate));
estimates.push_back(static_cast<size_t>(24)); // Overhead + sizeof(double).
const string16 string(1024, static_cast<char16>('X'));
@@ -41,7 +41,7 @@ TEST(IndexedDBKeyTest, KeySizeEstimates) {
IndexedDBKey::KeyArray array;
double value = 123.456;
for (size_t i = 0; i < array_size; ++i) {
- array.push_back(IndexedDBKey(value, WebKit::WebIDBKeyTypeNumber));
+ array.push_back(IndexedDBKey(value, blink::WebIDBKeyTypeNumber));
}
keys.push_back(IndexedDBKey(array));
// Overhead + array length * (Overhead + sizeof(double)).
« no previous file with comments | « content/common/indexed_db/indexed_db_key_range.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698