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

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

Issue 11275069: Perform install tasks for newly installed or upgraded component apps/extensions. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: various fixes Created 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 syncer::ModelType type) const OVERRIDE; 62 syncer::ModelType type) const OVERRIDE;
63 virtual syncer::SyncError ProcessSyncChanges( 63 virtual syncer::SyncError ProcessSyncChanges(
64 const tracked_objects::Location& from_here, 64 const tracked_objects::Location& from_here,
65 const syncer::SyncChangeList& change_list) OVERRIDE; 65 const syncer::SyncChangeList& change_list) OVERRIDE;
66 66
67 virtual bool is_ready() OVERRIDE; 67 virtual bool is_ready() OVERRIDE;
68 68
69 virtual base::SequencedTaskRunner* GetFileTaskRunner() OVERRIDE; 69 virtual base::SequencedTaskRunner* GetFileTaskRunner() OVERRIDE;
70 70
71 virtual void AddExtension(const extensions::Extension* extension) OVERRIDE; 71 virtual void AddExtension(const extensions::Extension* extension) OVERRIDE;
72 virtual void AddComponentExtension(
73 const extensions::Extension* extension) OVERRIDE;
72 74
73 virtual void UnloadExtension( 75 virtual void UnloadExtension(
74 const std::string& extension_id, 76 const std::string& extension_id,
75 extension_misc::UnloadedExtensionReason reason) OVERRIDE; 77 extension_misc::UnloadedExtensionReason reason) OVERRIDE;
76 78
77 virtual void SyncExtensionChangeIfNeeded( 79 virtual void SyncExtensionChangeIfNeeded(
78 const extensions::Extension& extension) OVERRIDE; 80 const extensions::Extension& extension) OVERRIDE;
79 }; 81 };
80 82
81 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 83 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698