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..f211ef53de12ce12aa16c226175cb0ad9dfcee91 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 UNAVAILABLE_ATTRIBUTE; |
droger
2015/06/10 15:59:10
NS_UNAVAILABLE
justincohen
2015/06/10 16:02:25
Done.
|
// The array of all browsing data managers. Must be accessed from the main |
// thread. |
@@ -122,6 +123,11 @@ NSString* const kStashOperationName = @"CRWBrowsingDataStore.STASH"; |
NSUInteger _numberOfPendingStashOrRestoreOperations; |
} |
+- (instancetype)init { |
+ NOTREACHED(); |
+ return nil; |
+} |
+ |
+ (NSOperationQueue*)operationQueueForStashAndRestoreOperations { |
static dispatch_once_t onceToken = 0; |
static NSOperationQueue* operationQueueForStashAndRestoreOperations = nil; |