// Copyright (c) 2012 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 CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ #define CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ #include #include #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "base/observer_list.h" #include "chrome/browser/extensions/active_tab_permission_granter.h" #include "chrome/browser/extensions/extension_reenabler.h" #include "chrome/common/extensions/webstore_install_result.h" #include "chrome/common/web_application_info.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_user_data.h" #include "extensions/browser/extension_function_dispatcher.h" #include "extensions/browser/script_execution_observer.h" #include "extensions/browser/script_executor.h" #include "extensions/common/stack_frame.h" #include "third_party/skia/include/core/SkBitmap.h" class FaviconDownloader; namespace content { struct LoadCommittedDetails; class RenderFrameHost; } namespace gfx { class Image; } namespace extensions { class ExtensionActionRunner; class BookmarkAppHelper; class Extension; class LocationBarController; class WebstoreInlineInstallerFactory; // Per-tab extension helper. Also handles non-extension apps. class TabHelper : public content::WebContentsObserver, public extensions::ExtensionFunctionDispatcher::Delegate, public base::SupportsWeakPtr, public content::NotificationObserver, public content::WebContentsUserData { public: ~TabHelper() override; void CreateApplicationShortcuts(); void CreateHostedAppFromWebContents(); bool CanCreateApplicationShortcuts() const; bool CanCreateBookmarkApp() const; void UpdateShortcutOnLoadComplete() { update_shortcut_on_load_complete_ = true; } // ScriptExecutionObserver::Delegate virtual void AddScriptExecutionObserver(ScriptExecutionObserver* observer); virtual void RemoveScriptExecutionObserver(ScriptExecutionObserver* observer); // Sets the extension denoting this as an app. If |extension| is non-null this // tab becomes an app-tab. WebContents does not listen for unload events for // the extension. It's up to consumers of WebContents to do that. // // NOTE: this should only be manipulated before the tab is added to a browser. // TODO(sky): resolve if this is the right way to identify an app tab. If it // is, than this should be passed in the constructor. void SetExtensionApp(const Extension* extension); // Convenience for setting the app extension by id. This does nothing if // |extension_app_id| is empty, or an extension can't be found given the // specified id. void SetExtensionAppById(const std::string& extension_app_id); // Set just the app icon, used by panels created by an extension. void SetExtensionAppIconById(const std::string& extension_app_id); const Extension* extension_app() const { return extension_app_; } bool is_app() const { return extension_app_ != NULL; } const WebApplicationInfo& web_app_info() const { return web_app_info_; } // If an app extension has been explicitly set for this WebContents its icon // is returned. // // NOTE: the returned icon is larger than 16x16 (its size is // extension_misc::EXTENSION_ICON_SMALLISH). SkBitmap* GetExtensionAppIcon(); ScriptExecutor* script_executor() { return script_executor_.get(); } LocationBarController* location_bar_controller() { return location_bar_controller_.get(); } ExtensionActionRunner* extension_action_runner() { return extension_action_runner_.get(); } ActiveTabPermissionGranter* active_tab_permission_granter() { return active_tab_permission_granter_.get(); } // Sets a non-extension app icon associated with WebContents and fires an // INVALIDATE_TYPE_TITLE navigation state change to trigger repaint of title. void SetAppIcon(const SkBitmap& app_icon); // Sets the factory used to create inline webstore item installers. // Used for testing. Takes ownership of the factory instance. void SetWebstoreInlineInstallerFactoryForTests( WebstoreInlineInstallerFactory* factory); private: // Utility function to invoke member functions on all relevant // ContentRulesRegistries. template void InvokeForContentRulesRegistries(const Func& func); // Different types of action when web app info is available. // OnDidGetApplicationInfo uses this to dispatch calls. enum WebAppAction { NONE, // No action at all. CREATE_SHORTCUT, // Bring up create application shortcut dialog. CREATE_HOSTED_APP, // Create and install a hosted app. UPDATE_SHORTCUT // Update icon for app shortcut. }; explicit TabHelper(content::WebContents* web_contents); friend class content::WebContentsUserData; // Displays UI for completion of creating a bookmark hosted app. void FinishCreateBookmarkApp(const extensions::Extension* extension, const WebApplicationInfo& web_app_info); // content::WebContentsObserver overrides. void RenderFrameCreated(content::RenderFrameHost* host) override; void DidNavigateMainFrame( const content::LoadCommittedDetails& details, const content::FrameNavigateParams& params) override; bool OnMessageReceived(const IPC::Message& message) override; bool OnMessageReceived(const IPC::Message& message, content::RenderFrameHost* render_frame_host) override; void DidCloneToNewWebContents( content::WebContents* old_web_contents, content::WebContents* new_web_contents) override; // extensions::ExtensionFunctionDispatcher::Delegate overrides. extensions::WindowController* GetExtensionWindowController() const override; content::WebContents* GetAssociatedWebContents() const override; // Message handlers. void OnDidGetWebApplicationInfo(const WebApplicationInfo& info); void OnInlineWebstoreInstall(content::RenderFrameHost* host, int install_id, int return_route_id, const std::string& webstore_item_id, const GURL& requestor_url, int listeners_mask); void OnGetAppInstallState(content::RenderFrameHost* host, const GURL& requestor_url, int return_route_id, int callback_id); void OnContentScriptsExecuting( content::RenderFrameHost* host, const ScriptExecutionObserver::ExecutingScriptsMap& extension_ids, const GURL& on_url); // App extensions related methods: // Resets app_icon_ and if |extension| is non-null uses ImageLoader to load // the extension's image asynchronously. void UpdateExtensionAppIcon(const Extension* extension); const Extension* GetExtension(const std::string& extension_app_id); void OnImageLoaded(const gfx::Image& image); // WebstoreStandaloneInstaller::Callback. void OnInlineInstallComplete(int install_id, int return_route_id, bool success, const std::string& error, webstore_install::Result result); // ExtensionReenabler::Callback. void OnReenableComplete(int install_id, int return_route_id, ExtensionReenabler::ReenableResult result); // content::NotificationObserver. void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) override; // Requests application info for the specified page. This is an asynchronous // request. The delegate is notified by way of OnDidGetApplicationInfo when // the data is available. void GetApplicationInfo(WebAppAction action); // Sends our tab ID to |render_frame_host|. void SetTabId(content::RenderFrameHost* render_frame_host); Profile* profile_; // Our content script observers. Declare at top so that it will outlive all // other members, since they might add themselves as observers. base::ObserverList script_execution_observers_; // If non-null this tab is an app tab and this is the extension the tab was // created for. const Extension* extension_app_; // Icon for extension_app_ (if non-null) or a manually-set icon for // non-extension apps. SkBitmap extension_app_icon_; // Cached web app info data. WebApplicationInfo web_app_info_; // Which deferred action to perform when OnDidGetApplicationInfo is notified // from a WebContents. WebAppAction pending_web_app_action_; // Which navigation entry was active when the GetApplicationInfo request was // sent, for verification when the reply returns. int last_committed_nav_entry_unique_id_; // Whether to trigger an update when the page load completes. bool update_shortcut_on_load_complete_; content::NotificationRegistrar registrar_; scoped_ptr script_executor_; scoped_ptr location_bar_controller_; scoped_ptr extension_action_runner_; scoped_ptr active_tab_permission_granter_; scoped_ptr bookmark_app_helper_; // Creates WebstoreInlineInstaller instances for inline install triggers. scoped_ptr webstore_inline_installer_factory_; // The reenable prompt for disabled extensions, if any. scoped_ptr extension_reenabler_; // Vend weak pointers that can be invalidated to stop in-progress loads. base::WeakPtrFactory image_loader_ptr_factory_; // Generic weak ptr factory for posting callbacks. base::WeakPtrFactory weak_ptr_factory_; DISALLOW_COPY_AND_ASSIGN(TabHelper); }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_