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

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: rebase and move v2 component app added in r169911 (and r170087) into background section in componen… Created 8 years 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 syncer::ModelType type) const OVERRIDE; 63 syncer::ModelType type) const OVERRIDE;
64 virtual syncer::SyncError ProcessSyncChanges( 64 virtual syncer::SyncError ProcessSyncChanges(
65 const tracked_objects::Location& from_here, 65 const tracked_objects::Location& from_here,
66 const syncer::SyncChangeList& change_list) OVERRIDE; 66 const syncer::SyncChangeList& change_list) OVERRIDE;
67 67
68 virtual bool is_ready() OVERRIDE; 68 virtual bool is_ready() OVERRIDE;
69 69
70 virtual base::SequencedTaskRunner* GetFileTaskRunner() OVERRIDE; 70 virtual base::SequencedTaskRunner* GetFileTaskRunner() OVERRIDE;
71 71
72 virtual void AddExtension(const extensions::Extension* extension) OVERRIDE; 72 virtual void AddExtension(const extensions::Extension* extension) OVERRIDE;
73 virtual void AddComponentExtension(
74 const extensions::Extension* extension) OVERRIDE;
73 75
74 virtual void UnloadExtension( 76 virtual void UnloadExtension(
75 const std::string& extension_id, 77 const std::string& extension_id,
76 extension_misc::UnloadedExtensionReason reason) OVERRIDE; 78 extension_misc::UnloadedExtensionReason reason) OVERRIDE;
77 79
78 virtual void SyncExtensionChangeIfNeeded( 80 virtual void SyncExtensionChangeIfNeeded(
79 const extensions::Extension& extension) OVERRIDE; 81 const extensions::Extension& extension) OVERRIDE;
80 }; 82 };
81 83
82 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 84 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/platform_app_browsertest.cc ('k') | chrome/browser/extensions/test_extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698