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

Unified Diff: content/browser/indexed_db/indexed_db_transaction.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_transaction.cc
diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc
index 276b1a9c979ec53c30d7aadd5bccd190f58bd23e..8566a388d902664e4846e92891e038aa09b7948d 100644
--- a/content/browser/indexed_db/indexed_db_transaction.cc
+++ b/content/browser/indexed_db/indexed_db_transaction.cc
@@ -114,7 +114,7 @@ void IndexedDBTransaction::EnsureTasksRunning() {
}
void IndexedDBTransaction::Abort() {
- Abort(IndexedDBDatabaseError(WebKit::WebIDBDatabaseExceptionUnknownError,
+ Abort(IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionUnknownError,
"Internal error (unknown cause)"));
}
@@ -253,7 +253,7 @@ void IndexedDBTransaction::Commit() {
} else {
callbacks_->OnAbort(
id_,
- IndexedDBDatabaseError(WebKit::WebIDBDatabaseExceptionUnknownError,
+ IndexedDBDatabaseError(blink::WebIDBDatabaseExceptionUnknownError,
"Internal error committing transaction."));
database_->TransactionFinishedAndAbortFired(this);
database_->TransactionCommitFailed();

Powered by Google App Engine
This is Rietveld 408576698