| Index: content/public/renderer/plugin_instance_throttler.cc
|
| diff --git a/content/public/renderer/plugin_instance_throttler.cc b/content/public/renderer/plugin_instance_throttler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..924d5f23e6807071a85ea6a9c237702e8e47e904
|
| --- /dev/null
|
| +++ b/content/public/renderer/plugin_instance_throttler.cc
|
| @@ -0,0 +1,19 @@
|
| +// 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 "content/public/renderer/plugin_instance_throttler.h"
|
| +
|
| +#include "content/renderer/pepper/plugin_instance_throttler_impl.h"
|
| +
|
| +namespace content {
|
| +
|
| +// static
|
| +PluginInstanceThrottler* PluginInstanceThrottler::Create(
|
| + RenderFrame* frame,
|
| + const GURL& plugin_url,
|
| + PluginPowerSaverMode power_saver_mode) {
|
| + return new PluginInstanceThrottlerImpl(frame, plugin_url, power_saver_mode);
|
| +}
|
| +
|
| +} // namespace content
|
|
|