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

Side by Side Diff: chrome/browser/extensions/test_extension_service.h

Issue 7692003: Revert 97482 - Apps/Extensions Sync refactoring -- delete most of the old glue, implement new syn... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 24 matching lines...) Expand all
35 const std::string& id) const OVERRIDE; 35 const std::string& id) const OVERRIDE;
36 virtual bool IsExtensionEnabled( 36 virtual bool IsExtensionEnabled(
37 const std::string& extension_id) const OVERRIDE; 37 const std::string& extension_id) const OVERRIDE;
38 virtual bool IsExternalExtensionUninstalled( 38 virtual bool IsExternalExtensionUninstalled(
39 const std::string& extension_id) const OVERRIDE; 39 const std::string& extension_id) const OVERRIDE;
40 40
41 virtual void UpdateExtensionBlacklist( 41 virtual void UpdateExtensionBlacklist(
42 const std::vector<std::string>& blacklist) OVERRIDE; 42 const std::vector<std::string>& blacklist) OVERRIDE;
43 virtual void CheckAdminBlacklist() OVERRIDE; 43 virtual void CheckAdminBlacklist() OVERRIDE;
44 virtual void CheckForUpdatesSoon() OVERRIDE; 44 virtual void CheckForUpdatesSoon() OVERRIDE;
45 45 virtual bool GetSyncData(
46 virtual SyncError MergeDataAndStartSyncing( 46 const Extension& extension, ExtensionFilter filter,
47 syncable::ModelType type, 47 ExtensionSyncData* extension_sync_data) const OVERRIDE;
48 const SyncDataList& initial_sync_data, 48 virtual std::vector<ExtensionSyncData> GetSyncDataList(
49 SyncChangeProcessor* sync_processor) OVERRIDE; 49 ExtensionFilter filter) const OVERRIDE;
50 virtual void StopSyncing(syncable::ModelType type) OVERRIDE; 50 virtual void ProcessSyncData(
51 virtual SyncDataList GetAllSyncData(syncable::ModelType type) const OVERRIDE; 51 const ExtensionSyncData& extension_sync_data,
52 virtual SyncError ProcessSyncChanges( 52 ExtensionFilter filter) OVERRIDE;
53 const tracked_objects::Location& from_here,
54 const SyncChangeList& change_list) OVERRIDE;
55 }; 53 };
56 54
57 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 55 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_sync_data_unittest.cc ('k') | chrome/browser/extensions/test_extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698