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

Side by Side Diff: webkit/tools/test_shell/test_worker/test_worker_main.cc

Issue 164305: Ensure we don't load plugins on the IO thread (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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 | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "config.h" 5 #include "config.h"
6 6
7 #undef LOG 7 #undef LOG
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/gfx/native_widget_types.h" 10 #include "base/gfx/native_widget_types.h"
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 } 201 }
202 202
203 bool SpellCheckWord(const wchar_t* word, int word_len, 203 bool SpellCheckWord(const wchar_t* word, int word_len,
204 int* misspelling_start, int* misspelling_len) { 204 int* misspelling_start, int* misspelling_len) {
205 // Report all words being correctly spelled. 205 // Report all words being correctly spelled.
206 *misspelling_start = 0; 206 *misspelling_start = 0;
207 *misspelling_len = 0; 207 *misspelling_len = 0;
208 return true; 208 return true;
209 } 209 }
210 210
211 bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) { 211 void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
212 return false;
213 } 212 }
214 213
215 bool IsPluginRunningInRendererProcess() { 214 bool IsPluginRunningInRendererProcess() {
216 return false; 215 return false;
217 } 216 }
218 217
219 bool GetPluginFinderURL(std::string* plugin_finder_url) { 218 bool GetPluginFinderURL(std::string* plugin_finder_url) {
220 return false; 219 return false;
221 } 220 }
222 221
(...skipping 21 matching lines...) Expand all
244 bool DownloadUrl(const std::string& url, HWND caller_window) { 243 bool DownloadUrl(const std::string& url, HWND caller_window) {
245 return false; 244 return false;
246 } 245 }
247 #endif 246 #endif
248 247
249 } // namespace webkit_glue 248 } // namespace webkit_glue
250 249
251 #if defined(COMPILER_GCC) 250 #if defined(COMPILER_GCC)
252 #pragma GCC visibility pop 251 #pragma GCC visibility pop
253 #endif 252 #endif
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698