summaryrefslogtreecommitdiffstats
path: root/components/plugins
diff options
context:
space:
mode:
authordbeam <dbeam@chromium.org>2015-11-10 15:22:35 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-10 23:23:29 +0000
commita6ae8e33ddad5a9467e429e7a654c1170f45a2d4 (patch)
tree6223c12ff75bedb8bce1261948af5c3b76602874 /components/plugins
parentc9015a4342c38437abd50b6b0c3e3448c5514400 (diff)
downloadchromium_src-a6ae8e33ddad5a9467e429e7a654c1170f45a2d4.zip
chromium_src-a6ae8e33ddad5a9467e429e7a654c1170f45a2d4.tar.gz
chromium_src-a6ae8e33ddad5a9467e429e7a654c1170f45a2d4.tar.bz2
Plugin Power Saver: remove dead flags
They already didn't do anything, and nobody's been asking to disable this feature (... which they can do via the UI in settings anyways). R=tommycli@chromium.org BUG=none Review URL: https://codereview.chromium.org/1417213010 Cr-Commit-Position: refs/heads/master@{#358948}
Diffstat (limited to 'components/plugins')
-rw-r--r--components/plugins/common/BUILD.gn10
-rw-r--r--components/plugins/common/plugins_switches.cc17
-rw-r--r--components/plugins/common/plugins_switches.h17
3 files changed, 0 insertions, 44 deletions
diff --git a/components/plugins/common/BUILD.gn b/components/plugins/common/BUILD.gn
deleted file mode 100644
index c0ca042..0000000
--- a/components/plugins/common/BUILD.gn
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 2015 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.
-
-static_library("common") {
- sources = [
- "plugins_switches.cc",
- "plugins_switches.h",
- ]
-}
diff --git a/components/plugins/common/plugins_switches.cc b/components/plugins/common/plugins_switches.cc
deleted file mode 100644
index 83c9652..0000000
--- a/components/plugins/common/plugins_switches.cc
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2015 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 "components/plugins/common/plugins_switches.h"
-
-namespace plugins {
-namespace switches {
-
-// Disables the experimental Plugin Power Saver feature.
-const char kDisablePluginPowerSaver[] = "disable-plugin-power-saver";
-
-// Enables the experimental Plugin Power Saver feature.
-const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
-
-} // namespace switches
-} // namespace plugins
diff --git a/components/plugins/common/plugins_switches.h b/components/plugins/common/plugins_switches.h
deleted file mode 100644
index 57500b7..0000000
--- a/components/plugins/common/plugins_switches.h
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef COMPONENTS_PLUGINS_COMMON_PLUGIN_SWITCHES_H_
-#define COMPONENTS_PLUGINS_COMMON_PLUGIN_SWITCHES_H_
-
-namespace plugins {
-namespace switches {
-
-extern const char kDisablePluginPowerSaver[];
-extern const char kEnablePluginPowerSaver[];
-
-} // namespace switches
-} // namespace plugins
-
-#endif // COMPONENTS_PLUGINS_COMMON_PLUGIN_SWITCHES_H_