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

Unified Diff: ios/web/crw_browsing_data_store.mm

Issue 1171203004: Correct iOS build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 5 years, 6 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
Index: ios/web/crw_browsing_data_store.mm
diff --git a/ios/web/crw_browsing_data_store.mm b/ios/web/crw_browsing_data_store.mm
index 1d9fbe0d65dc91cf00977202ab5fbbf5e522831b..d78db6a55e4fa2c56035dc0a7dfd263269ab2263 100644
--- a/ios/web/crw_browsing_data_store.mm
+++ b/ios/web/crw_browsing_data_store.mm
@@ -45,6 +45,7 @@ NSString* const kStashOperationName = @"CRWBrowsingDataStore.STASH";
// run. All remove operations need to be run on the same queue hence it is
// shared with all CRWBrowsingDataStores.
+ (NSOperationQueue*)operationQueueForRemoveOperations;
+- (instancetype)init NS_UNAVAILABLE;
// The array of all browsing data managers. Must be accessed from the main
// thread.
@@ -176,6 +177,11 @@ NSString* const kStashOperationName = @"CRWBrowsingDataStore.STASH";
return self;
}
+- (instancetype)init {
+ NOTREACHED();
+ return nil;
+}
+
- (NSString*)description {
NSString* format = @"<%@: %p; hasPendingOperations = { %@ }>";
NSString* hasPendingOperationsString =
« no previous file with comments | « ios/web/browsing_data_managers/crw_cookie_browsing_data_manager.mm ('k') | ios/web/crw_browsing_data_store_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698