| Index: content/public/browser/browser_plugin_guest_manager.cc
|
| diff --git a/content/public/browser/browser_plugin_guest_manager_delegate.cc b/content/public/browser/browser_plugin_guest_manager.cc
|
| similarity index 65%
|
| rename from content/public/browser/browser_plugin_guest_manager_delegate.cc
|
| rename to content/public/browser/browser_plugin_guest_manager.cc
|
| index 16cdd99a03702e0a650c9a6a851856c6109ab7a3..a06b241262fc3d38ccc74f8ddded1acec873bf9f 100644
|
| --- a/content/public/browser/browser_plugin_guest_manager_delegate.cc
|
| +++ b/content/public/browser/browser_plugin_guest_manager.cc
|
| @@ -2,11 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/public/browser/browser_plugin_guest_manager_delegate.h"
|
| +#include "content/public/browser/browser_plugin_guest_manager.h"
|
|
|
| namespace content {
|
|
|
| -content::WebContents* BrowserPluginGuestManagerDelegate::CreateGuest(
|
| +content::WebContents* BrowserPluginGuestManager::CreateGuest(
|
| SiteInstance* embedder_site_instance,
|
| int instance_id,
|
| const StorageInfo& storage_info,
|
| @@ -14,11 +14,11 @@ content::WebContents* BrowserPluginGuestManagerDelegate::CreateGuest(
|
| return NULL;
|
| }
|
|
|
| -int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
|
| +int BrowserPluginGuestManager::GetNextInstanceID() {
|
| return 0;
|
| }
|
|
|
| -bool BrowserPluginGuestManagerDelegate::ForEachGuest(
|
| +bool BrowserPluginGuestManager::ForEachGuest(
|
| WebContents* embedder_web_contents,
|
| const GuestCallback& callback) {
|
| return false;
|
|
|