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

Side by Side Diff: content/browser/plugin_service_impl.cc

Issue 12177018: Follow-on fixes and naming changes for https://codereview.chromium.org/12086077/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 | Annotate | Revision Log
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 #include "content/browser/plugin_service_impl.h" 5 #include "content/browser/plugin_service_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 webkit::WebPluginInfo* info, 476 webkit::WebPluginInfo* info,
477 std::string* actual_mime_type) { 477 std::string* actual_mime_type) {
478 std::vector<webkit::WebPluginInfo> plugins; 478 std::vector<webkit::WebPluginInfo> plugins;
479 std::vector<std::string> mime_types; 479 std::vector<std::string> mime_types;
480 bool stale = GetPluginInfoArray( 480 bool stale = GetPluginInfoArray(
481 url, mime_type, allow_wildcard, &plugins, &mime_types); 481 url, mime_type, allow_wildcard, &plugins, &mime_types);
482 if (is_stale) 482 if (is_stale)
483 *is_stale = stale; 483 *is_stale = stale;
484 484
485 for (size_t i = 0; i < plugins.size(); ++i) { 485 for (size_t i = 0; i < plugins.size(); ++i) {
486 if (!filter_ || filter_->IsPluginEnabled(render_process_id, 486 if (!filter_ || filter_->IsPluginAvailable(render_process_id,
487 render_view_id, 487 render_view_id,
488 context, 488 context,
489 url, 489 url,
490 page_url, 490 page_url,
491 &plugins[i])) { 491 &plugins[i])) {
492 *info = plugins[i]; 492 *info = plugins[i];
493 if (actual_mime_type) 493 if (actual_mime_type)
494 *actual_mime_type = mime_types[i]; 494 *actual_mime_type = mime_types[i];
495 return true; 495 return true;
496 } 496 }
497 } 497 }
498 return false; 498 return false;
499 } 499 }
500 500
501 bool PluginServiceImpl::GetPluginInfoByPath(const FilePath& plugin_path, 501 bool PluginServiceImpl::GetPluginInfoByPath(const FilePath& plugin_path,
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 void PluginServiceImpl::GetInternalPlugins( 740 void PluginServiceImpl::GetInternalPlugins(
741 std::vector<webkit::WebPluginInfo>* plugins) { 741 std::vector<webkit::WebPluginInfo>* plugins) {
742 plugin_list_->GetInternalPlugins(plugins); 742 plugin_list_->GetInternalPlugins(plugins);
743 } 743 }
744 744
745 webkit::npapi::PluginList* PluginServiceImpl::GetPluginList() { 745 webkit::npapi::PluginList* PluginServiceImpl::GetPluginList() {
746 return plugin_list_; 746 return plugin_list_;
747 } 747 }
748 748
749 } // namespace content 749 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698