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

Side by Side Diff: chrome/plugin/plugin_thread.cc

Issue 2075006: Mac: First steps for default plugin (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: rebase Created 10 years, 7 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/renderer/render_view.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "chrome/plugin/plugin_thread.h" 5 #include "chrome/plugin/plugin_thread.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #if defined(OS_LINUX) 9 #if defined(OS_LINUX)
10 #include <gtk/gtk.h> 10 #include <gtk/gtk.h>
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 if (!plugin_thread) 200 if (!plugin_thread)
201 return false; 201 return false;
202 202
203 plugin_thread->Send( 203 plugin_thread->Send(
204 new PluginProcessHostMsg_GetPluginFinderUrl(plugin_finder_url)); 204 new PluginProcessHostMsg_GetPluginFinderUrl(plugin_finder_url));
205 DCHECK(!plugin_finder_url->empty()); 205 DCHECK(!plugin_finder_url->empty());
206 return true; 206 return true;
207 } 207 }
208 208
209 bool IsDefaultPluginEnabled() { 209 bool IsDefaultPluginEnabled() {
210 #if defined(OS_WIN) 210 #if defined(OS_WIN) || defined(OS_MACOSX)
211 return true; 211 return true;
212 #elif defined(OS_LINUX) 212 #elif defined(OS_LINUX)
213 // http://code.google.com/p/chromium/issues/detail?id=10952 213 // http://code.google.com/p/chromium/issues/detail?id=10952
214 return false; 214 return false;
215 #elif defined(OS_MACOSX)
216 // http://code.google.com/p/chromium/issues/detail?id=17392
217 return false;
218 #endif 215 #endif
219 } 216 }
220 217
221 // Dispatch the resolve proxy resquest to the right code, depending on which 218 // Dispatch the resolve proxy resquest to the right code, depending on which
222 // process the plugin is running in {renderer, browser, plugin}. 219 // process the plugin is running in {renderer, browser, plugin}.
223 bool FindProxyForUrl(const GURL& url, std::string* proxy_list) { 220 bool FindProxyForUrl(const GURL& url, std::string* proxy_list) {
224 int net_error; 221 int net_error;
225 std::string proxy_result; 222 std::string proxy_result;
226 223
227 bool result; 224 bool result;
228 if (IsPluginProcess()) { 225 if (IsPluginProcess()) {
229 result = PluginThread::current()->Send( 226 result = PluginThread::current()->Send(
230 new PluginProcessHostMsg_ResolveProxy(url, &net_error, &proxy_result)); 227 new PluginProcessHostMsg_ResolveProxy(url, &net_error, &proxy_result));
231 } else { 228 } else {
232 result = RenderThread::current()->Send( 229 result = RenderThread::current()->Send(
233 new ViewHostMsg_ResolveProxy(url, &net_error, &proxy_result)); 230 new ViewHostMsg_ResolveProxy(url, &net_error, &proxy_result));
234 } 231 }
235 232
236 if (!result || net_error != net::OK) 233 if (!result || net_error != net::OK)
237 return false; 234 return false;
238 235
239 *proxy_list = proxy_result; 236 *proxy_list = proxy_result;
240 return true; 237 return true;
241 } 238 }
242 239
243 } // namespace webkit_glue 240 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698