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

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

Issue 641283002: Separate the audio player app from Files.app Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up Created 6 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/extensions/component_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_COMPONENT_LOADER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
6 #define CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 std::string Add(const base::DictionaryValue* parsed_manifest, 125 std::string Add(const base::DictionaryValue* parsed_manifest,
126 const base::FilePath& root_directory); 126 const base::FilePath& root_directory);
127 127
128 // Loads a registered component extension. 128 // Loads a registered component extension.
129 void Load(const ComponentExtensionInfo& info); 129 void Load(const ComponentExtensionInfo& info);
130 130
131 void AddDefaultComponentExtensionsWithBackgroundPages( 131 void AddDefaultComponentExtensionsWithBackgroundPages(
132 bool skip_session_components); 132 bool skip_session_components);
133 void AddFileManagerExtension(); 133 void AddFileManagerExtension();
134 void AddVideoPlayerExtension(); 134 void AddVideoPlayerExtension();
135 void AddAudioPlayerExtension();
135 void AddGalleryExtension(); 136 void AddGalleryExtension();
136 void AddHangoutServicesExtension(); 137 void AddHangoutServicesExtension();
137 void AddHotwordHelperExtension(); 138 void AddHotwordHelperExtension();
138 void AddImageLoaderExtension(); 139 void AddImageLoaderExtension();
139 void AddNetworkSpeechSynthesisExtension(); 140 void AddNetworkSpeechSynthesisExtension();
140 141
141 void AddWithNameAndDescription(int manifest_resource_id, 142 void AddWithNameAndDescription(int manifest_resource_id,
142 const base::FilePath& root_directory, 143 const base::FilePath& root_directory,
143 int name_string_id, 144 int name_string_id,
144 int description_string_id); 145 int description_string_id);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 178
178 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NetworkSpeechEngine); 179 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NetworkSpeechEngine);
179 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NoNetworkSpeechEngineWhenOffline); 180 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NoNetworkSpeechEngineWhenOffline);
180 181
181 DISALLOW_COPY_AND_ASSIGN(ComponentLoader); 182 DISALLOW_COPY_AND_ASSIGN(ComponentLoader);
182 }; 183 };
183 184
184 } // namespace extensions 185 } // namespace extensions
185 186
186 #endif // CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_ 187 #endif // CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/component_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698