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

Unified Diff: content/browser/indexed_db/indexed_db_factory_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
Index: content/browser/indexed_db/indexed_db_factory_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_factory_unittest.cc b/content/browser/indexed_db/indexed_db_factory_unittest.cc
index f04906e14061ed6205708cc5743577cf0149c67c..d8cf6fec98b17e802c68c5033cc02e3f1bc40a45 100644
--- a/content/browser/indexed_db/indexed_db_factory_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_factory_unittest.cc
@@ -40,8 +40,8 @@ class MockIDBFactory : public IndexedDBFactory {
scoped_refptr<IndexedDBBackingStore> TestOpenBackingStore(
const GURL& origin,
const base::FilePath& data_directory) {
- WebKit::WebIDBCallbacks::DataLoss data_loss =
- WebKit::WebIDBCallbacks::DataLossNone;
+ blink::WebIDBCallbacks::DataLoss data_loss =
+ blink::WebIDBCallbacks::DataLossNone;
std::string data_loss_message;
bool disk_full;
scoped_refptr<IndexedDBBackingStore> backing_store =
@@ -50,7 +50,7 @@ class MockIDBFactory : public IndexedDBFactory {
&data_loss,
&data_loss_message,
&disk_full);
- EXPECT_EQ(WebKit::WebIDBCallbacks::DataLossNone, data_loss);
+ EXPECT_EQ(blink::WebIDBCallbacks::DataLossNone, data_loss);
return backing_store;
}
@@ -187,7 +187,7 @@ class DiskFullFactory : public IndexedDBFactory {
virtual scoped_refptr<IndexedDBBackingStore> OpenBackingStore(
const GURL& origin_url,
const base::FilePath& data_directory,
- WebKit::WebIDBCallbacks::DataLoss* data_loss,
+ blink::WebIDBCallbacks::DataLoss* data_loss,
std::string* data_loss_message,
bool* disk_full) OVERRIDE {
*disk_full = true;
@@ -201,7 +201,7 @@ class LookingForQuotaErrorMockCallbacks : public IndexedDBCallbacks {
: IndexedDBCallbacks(NULL, 0, 0), error_called_(false) {}
virtual void OnError(const IndexedDBDatabaseError& error) OVERRIDE {
error_called_ = true;
- EXPECT_EQ(WebKit::WebIDBDatabaseExceptionQuotaError, error.code());
+ EXPECT_EQ(blink::WebIDBDatabaseExceptionQuotaError, error.code());
}
private:
« no previous file with comments | « content/browser/indexed_db/indexed_db_factory.cc ('k') | content/browser/indexed_db/indexed_db_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698