| Index: chrome/browser/guest_view/extension_options/extension_options_guest.h
|
| diff --git a/chrome/browser/guest_view/app_view/app_view_guest.h b/chrome/browser/guest_view/extension_options/extension_options_guest.h
|
| similarity index 50%
|
| copy from chrome/browser/guest_view/app_view/app_view_guest.h
|
| copy to chrome/browser/guest_view/extension_options/extension_options_guest.h
|
| index 33e01972b56ece5c51f86d39e3f6111217251f59..b09977125d0cce282e7ee571e32f91fb84fbf5f0 100644
|
| --- a/chrome/browser/guest_view/app_view/app_view_guest.h
|
| +++ b/chrome/browser/guest_view/extension_options/extension_options_guest.h
|
| @@ -2,28 +2,27 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_GUEST_VIEW_APP_VIEW_APP_VIEW_GUEST_H_
|
| -#define CHROME_BROWSER_GUEST_VIEW_APP_VIEW_APP_VIEW_GUEST_H_
|
| +#ifndef CHROME_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
|
| +#define CHROME_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
|
|
|
| #include "chrome/browser/guest_view/guest_view.h"
|
|
|
| -class AppViewGuest : public GuestView<AppViewGuest> {
|
| +class ExtensionOptionsGuest : public GuestView<ExtensionOptionsGuest> {
|
| public:
|
| static const char Type[];
|
|
|
| - AppViewGuest(content::BrowserContext* browser_context,
|
| - int guest_instance_id);
|
| + ExtensionOptionsGuest(content::BrowserContext* browser_context,
|
| + int guest_instance_id);
|
|
|
| - // GuestViewBase implementation.
|
| + // GuestViewBase implementation
|
| virtual void CreateWebContents(
|
| const std::string& embedder_extension_id,
|
| int embedder_render_process_id,
|
| const base::DictionaryValue& create_params,
|
| const WebContentsCreatedCallback& callback) OVERRIDE;
|
| - virtual void DidAttachToEmbedder() OVERRIDE;
|
|
|
| private:
|
| - virtual ~AppViewGuest();
|
| + virtual ~ExtensionOptionsGuest();
|
| };
|
|
|
| -#endif // CHROME_BROWSER_GUEST_VIEW_APP_VIEW_APP_VIEW_GUEST_H_
|
| +#endif // CHROME_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
|
|
|