OLD | NEW |
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 "chrome/renderer/render_view.h" | 5 #include "chrome/renderer/render_view.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 2339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2350 url, policy_url, mime_type, &path, actual_mime_type)); | 2350 url, policy_url, mime_type, &path, actual_mime_type)); |
2351 if (path.value().empty()) | 2351 if (path.value().empty()) |
2352 return NULL; | 2352 return NULL; |
2353 | 2353 |
2354 const std::string* mime_type_to_use; | 2354 const std::string* mime_type_to_use; |
2355 if (!actual_mime_type->empty()) | 2355 if (!actual_mime_type->empty()) |
2356 mime_type_to_use = actual_mime_type; | 2356 mime_type_to_use = actual_mime_type; |
2357 else | 2357 else |
2358 mime_type_to_use = &mime_type; | 2358 mime_type_to_use = &mime_type; |
2359 | 2359 |
2360 bool in_process_plugin = RenderProcess::current()->in_process_plugins(); | 2360 if (RenderProcess::current()->in_process_plugins()) { |
2361 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kInternalNaCl)) { | |
2362 if (mime_type == "application/x-nacl-srpc") { | |
2363 in_process_plugin = true; | |
2364 } | |
2365 } | |
2366 if (in_process_plugin) { | |
2367 #if defined(OS_WIN) // In-proc plugins aren't supported on Linux or Mac. | 2361 #if defined(OS_WIN) // In-proc plugins aren't supported on Linux or Mac. |
2368 return WebPluginDelegateImpl::Create( | 2362 return WebPluginDelegateImpl::Create( |
2369 path, *mime_type_to_use, gfx::NativeViewFromId(host_window_)); | 2363 path, *mime_type_to_use, gfx::NativeViewFromId(host_window_)); |
2370 #else | 2364 #else |
2371 NOTIMPLEMENTED(); | 2365 NOTIMPLEMENTED(); |
2372 return NULL; | 2366 return NULL; |
2373 #endif | 2367 #endif |
2374 } | 2368 } |
2375 | 2369 |
2376 return new WebPluginDelegateProxy(*mime_type_to_use, AsWeakPtr()); | 2370 return new WebPluginDelegateProxy(*mime_type_to_use, AsWeakPtr()); |
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3586 // TODO(darin): There's actually no reason for this to be here. We should | 3580 // TODO(darin): There's actually no reason for this to be here. We should |
3587 // have the browser side manage the document tag. | 3581 // have the browser side manage the document tag. |
3588 #if defined(OS_MACOSX) | 3582 #if defined(OS_MACOSX) |
3589 if (!has_document_tag_) { | 3583 if (!has_document_tag_) { |
3590 // Make the call to get the tag. | 3584 // Make the call to get the tag. |
3591 Send(new ViewHostMsg_GetDocumentTag(routing_id_, &document_tag_)); | 3585 Send(new ViewHostMsg_GetDocumentTag(routing_id_, &document_tag_)); |
3592 has_document_tag_ = true; | 3586 has_document_tag_ = true; |
3593 } | 3587 } |
3594 #endif | 3588 #endif |
3595 } | 3589 } |
OLD | NEW |