| Index: content/public/browser/browser_plugin_guest_manager.h
|
| diff --git a/content/public/browser/browser_plugin_guest_manager_delegate.h b/content/public/browser/browser_plugin_guest_manager.h
|
| similarity index 79%
|
| rename from content/public/browser/browser_plugin_guest_manager_delegate.h
|
| rename to content/public/browser/browser_plugin_guest_manager.h
|
| index c55f58e984c2902adbc33bffe78492df1e162290..db478c993e0930aa36a8136c9c222440b1e4b58f 100644
|
| --- a/content/public/browser/browser_plugin_guest_manager_delegate.h
|
| +++ b/content/public/browser/browser_plugin_guest_manager.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_
|
| -#define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_
|
| +#ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
|
| +#define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
|
|
|
| #include "base/callback.h"
|
| #include "content/common/content_export.h"
|
| @@ -19,16 +19,16 @@ namespace content {
|
| class SiteInstance;
|
| class WebContents;
|
|
|
| -// A BrowserPluginGuestManagerDelegate offloads guest management and routing
|
| +// A BrowserPluginGuestManager offloads guest management and routing
|
| // operations outside of the content layer.
|
| struct StorageInfo {
|
| bool persist;
|
| std::string partition_id;
|
| };
|
|
|
| -class CONTENT_EXPORT BrowserPluginGuestManagerDelegate {
|
| +class CONTENT_EXPORT BrowserPluginGuestManager {
|
| public:
|
| - virtual ~BrowserPluginGuestManagerDelegate() {}
|
| + virtual ~BrowserPluginGuestManager() {}
|
|
|
| virtual content::WebContents* CreateGuest(
|
| content::SiteInstance* embedder_site_instance,
|
| @@ -57,4 +57,4 @@ class CONTENT_EXPORT BrowserPluginGuestManagerDelegate {
|
|
|
| } // namespace content
|
|
|
| -#endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_
|
| +#endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
|
|
|