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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 23484019: Refactor KeySystems code to call a function to populate the info. (relanding r221932) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build error (cannot |= an enum) Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/chrome_content_renderer_client.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_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 // TODO(victorhsieh): move to ChromeContentBrowserClient once we migrate 133 // TODO(victorhsieh): move to ChromeContentBrowserClient once we migrate
134 // PPAPI FileIO host to browser. 134 // PPAPI FileIO host to browser.
135 virtual bool IsPluginAllowedToCallRequestOSFileHandle( 135 virtual bool IsPluginAllowedToCallRequestOSFileHandle(
136 WebKit::WebPluginContainer* container) OVERRIDE; 136 WebKit::WebPluginContainer* container) OVERRIDE;
137 virtual WebKit::WebSpeechSynthesizer* OverrideSpeechSynthesizer( 137 virtual WebKit::WebSpeechSynthesizer* OverrideSpeechSynthesizer(
138 WebKit::WebSpeechSynthesizerClient* client) OVERRIDE; 138 WebKit::WebSpeechSynthesizerClient* client) OVERRIDE;
139 virtual bool ShouldReportDetailedMessageForSource( 139 virtual bool ShouldReportDetailedMessageForSource(
140 const base::string16& source) const OVERRIDE; 140 const base::string16& source) const OVERRIDE;
141 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE; 141 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE;
142 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE; 142 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE;
143 virtual void AddKeySystems(
144 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE;
143 145
144 // For testing. 146 // For testing.
145 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher); 147 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher);
146 148
147 #if defined(ENABLE_SPELLCHECK) 149 #if defined(ENABLE_SPELLCHECK)
148 // Sets a new |spellcheck|. Used for low-mem restart and testing only. 150 // Sets a new |spellcheck|. Used for low-mem restart and testing only.
149 // Takes ownership of |spellcheck|. 151 // Takes ownership of |spellcheck|.
150 void SetSpellcheck(SpellCheck* spellcheck); 152 void SetSpellcheck(SpellCheck* spellcheck);
151 #endif 153 #endif
152 154
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 #endif 209 #endif
208 210
209 #if defined(ENABLE_PLUGINS) 211 #if defined(ENABLE_PLUGINS)
210 std::set<std::string> allowed_file_handle_origins_; 212 std::set<std::string> allowed_file_handle_origins_;
211 #endif 213 #endif
212 }; 214 };
213 215
214 } // namespace chrome 216 } // namespace chrome
215 217
216 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 218 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698