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

Unified Diff: content/child/web_database_observer_impl.h

Issue 666333002: Remove isSyncDatabase in WebDatabaseObserver [2/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 | « no previous file | content/child/web_database_observer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_database_observer_impl.h
diff --git a/content/child/web_database_observer_impl.h b/content/child/web_database_observer_impl.h
index 4175fa711ca9c99985ce46bd14f1c8367acedf28..097610961635b0fee91005365a7654ac283d5a5e 100644
--- a/content/child/web_database_observer_impl.h
+++ b/content/child/web_database_observer_impl.h
@@ -31,32 +31,26 @@ class WebDatabaseObserverImpl : public blink::WebDatabaseObserver {
virtual void reportOpenDatabaseResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int callsite, int websql_error, int sqlite_error);
virtual void reportChangeVersionResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int callsite, int websql_error, int sqlite_error);
virtual void reportStartTransactionResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int callsite, int websql_error, int sqlite_error);
virtual void reportCommitTransactionResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int callsite, int websql_error, int sqlite_error);
virtual void reportExecuteStatementResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int callsite, int websql_error, int sqlite_error);
virtual void reportVacuumDatabaseResult(
const blink::WebString& origin_identifier,
const blink::WebString& database_name,
- bool is_sync_database,
int sqlite_error);
void WaitForAllDatabasesToClose();
« no previous file with comments | « no previous file | content/child/web_database_observer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698