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

Unified Diff: chrome/common/extensions/extension.h

Issue 12618009: Move SystemIndicator parsing out of Extension class (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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: chrome/common/extensions/extension.h
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h
index 5e1b91756ce89f9325b14feb5c6e90d907f07264..4cc12685c8ae3b00399e91c7ded27cf2c1618762 100644
--- a/chrome/common/extensions/extension.h
+++ b/chrome/common/extensions/extension.h
@@ -454,9 +454,6 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
return converted_from_user_script_;
}
const UserScriptList& content_scripts() const { return content_scripts_; }
- const ActionInfo* system_indicator_info() const {
- return system_indicator_info_.get();
- }
const std::vector<NaClModuleInfo>& nacl_modules() const {
return nacl_modules_;
}
@@ -603,7 +600,6 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
bool LoadExtensionFeatures(string16* error);
bool LoadContentScripts(string16* error);
bool LoadBrowserAction(string16* error);
- bool LoadSystemIndicator(string16* error);
bool LoadTextToSpeechVoices(string16* error);
bool LoadIncognitoMode(string16* error);
bool LoadManagedModeFeatures(string16* error);
@@ -722,9 +718,6 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
// Paths to the content scripts the extension contains.
UserScriptList content_scripts_;
- // The extension's system indicator, if any.
- scoped_ptr<ActionInfo> system_indicator_info_;
-
// Optional list of NaCl modules and associated properties.
std::vector<NaClModuleInfo> nacl_modules_;

Powered by Google App Engine
This is Rietveld 408576698