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

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

Issue 149233004: Revert "Automatically trigger installation of high-quality speech synthesis extension." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Don't remove WillSpeakUtteranceWithVoice, it is dependent upon by a test now. Created 6 years, 10 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
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 void Load(const ComponentExtensionInfo& info); 119 void Load(const ComponentExtensionInfo& info);
120 120
121 void AddDefaultComponentExtensionsWithBackgroundPages( 121 void AddDefaultComponentExtensionsWithBackgroundPages(
122 bool skip_session_components); 122 bool skip_session_components);
123 void AddFileManagerExtension(); 123 void AddFileManagerExtension();
124 void AddHangoutServicesExtension(); 124 void AddHangoutServicesExtension();
125 void AddHotwordHelperExtension(); 125 void AddHotwordHelperExtension();
126 void AddImageLoaderExtension(); 126 void AddImageLoaderExtension();
127 void AddBookmarksExtensions(); 127 void AddBookmarksExtensions();
128 void AddNetworkSpeechSynthesisExtension(); 128 void AddNetworkSpeechSynthesisExtension();
129 #if defined(OS_CHROMEOS)
130 void AddChromeOsSpeechSynthesisExtension();
131 #endif
132 129
133 void AddWithName(int manifest_resource_id, 130 void AddWithName(int manifest_resource_id,
134 const base::FilePath& root_directory, 131 const base::FilePath& root_directory,
135 const std::string& name); 132 const std::string& name);
136 void AddChromeApp(); 133 void AddChromeApp();
137 void AddKeyboardApp(); 134 void AddKeyboardApp();
138 void AddWebStoreApp(); 135 void AddWebStoreApp();
139 136
140 // Unloads |component| from the memory. 137 // Unloads |component| from the memory.
141 void UnloadComponent(ComponentExtensionInfo* component); 138 void UnloadComponent(ComponentExtensionInfo* component);
(...skipping 10 matching lines...) Expand all
152 149
153 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NetworkSpeechEngine); 150 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NetworkSpeechEngine);
154 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NoNetworkSpeechEngineWhenOffline); 151 FRIEND_TEST_ALL_PREFIXES(TtsApiTest, NoNetworkSpeechEngineWhenOffline);
155 152
156 DISALLOW_COPY_AND_ASSIGN(ComponentLoader); 153 DISALLOW_COPY_AND_ASSIGN(ComponentLoader);
157 }; 154 };
158 155
159 } // namespace extensions 156 } // namespace extensions
160 157
161 #endif // CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_ 158 #endif // CHROME_BROWSER_EXTENSIONS_COMPONENT_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/user_manager_impl.h ('k') | chrome/browser/extensions/component_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698