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

Unified Diff: webkit/plugins/npapi/mock_plugin_list.cc

Issue 19706002: Remove plugin_list.h includes from chrome tests in preparation for moving webkit/plugins to content… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix posix tests Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/mock_plugin_list.h ('k') | webkit/plugins/npapi/plugin_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/mock_plugin_list.cc
===================================================================
--- webkit/plugins/npapi/mock_plugin_list.cc (revision 212185)
+++ webkit/plugins/npapi/mock_plugin_list.cc (working copy)
@@ -1,38 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/plugins/npapi/mock_plugin_list.h"
-
-namespace webkit {
-namespace npapi {
-
-MockPluginList::MockPluginList() {
-}
-
-MockPluginList::~MockPluginList() {
-}
-
-void MockPluginList::AddPluginToLoad(const WebPluginInfo& plugin) {
- plugins_to_load_.push_back(plugin);
-}
-
-void MockPluginList::ClearPluginsToLoad() {
- plugins_to_load_.clear();
-}
-
-bool MockPluginList::GetPluginsNoRefresh(
- std::vector<webkit::WebPluginInfo>* plugins) {
- GetPlugins(plugins);
- return true;
-}
-
-void MockPluginList::LoadPluginsIntoPluginListInternal(
- std::vector<webkit::WebPluginInfo>* plugins) {
- for (size_t i = 0; i < plugins_to_load_.size(); ++i) {
- plugins->push_back(plugins_to_load_[i]);
- }
-}
-
-} // npapi
-} // webkit
« no previous file with comments | « webkit/plugins/npapi/mock_plugin_list.h ('k') | webkit/plugins/npapi/plugin_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698