1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_RENDERER_EXTENSION_HELPER_H_
6 #define EXTENSIONS_RENDERER_EXTENSION_HELPER_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "content/public/common/console_message_level.h"
12 #include "content/public/renderer/render_view_observer.h"
13 #include "content/public/renderer/render_view_observer_tracker.h"
14 #include "extensions/common/view_type.h"
23 namespace extensions
{
24 class AutomationApiHelper
;
28 // RenderView-level plumbing for extension features.
30 : public content::RenderViewObserver
,
31 public content::RenderViewObserverTracker
<ExtensionHelper
> {
33 // Returns a list of extension RenderViews that match the given filter
34 // criteria. If |browser_window_id| is not extension_misc::kUnknownWindowId,
35 // the list is restricted to views in that browser window.
36 static std::vector
<content::RenderView
*> GetExtensionViews(
37 const std::string
& extension_id
,
38 int browser_window_id
,
41 // Returns the given extension's background page, or NULL if none.
42 static content::RenderView
* GetBackgroundPage(
43 const std::string
& extension_id
);
45 ExtensionHelper(content::RenderView
* render_view
, Dispatcher
* dispatcher
);
46 ~ExtensionHelper() override
;
48 int tab_id() const { return tab_id_
; }
49 int browser_window_id() const { return browser_window_id_
; }
50 ViewType
view_type() const { return view_type_
; }
51 Dispatcher
* dispatcher() const { return dispatcher_
; }
54 // RenderViewObserver implementation.
55 bool OnMessageReceived(const IPC::Message
& message
) override
;
56 void DidCreateDocumentElement(blink::WebLocalFrame
* frame
) override
;
58 blink::WebLocalFrame
* frame
,
59 const blink::WebVector
<blink::WebString
>& newly_matching_selectors
,
60 const blink::WebVector
<blink::WebString
>& stopped_matching_selectors
)
62 void DraggableRegionsChanged(blink::WebFrame
* frame
) override
;
64 void OnExtensionResponse(int request_id
, bool success
,
65 const base::ListValue
& response
,
66 const std::string
& error
);
67 void OnExtensionMessageInvoke(const std::string
& extension_id
,
68 const std::string
& module_name
,
69 const std::string
& function_name
,
70 const base::ListValue
& args
,
72 void OnNotifyRendererViewType(ViewType view_type
);
73 void OnSetTabId(int tab_id
);
74 void OnUpdateBrowserWindowId(int window_id
);
75 void OnAddMessageToConsole(content::ConsoleMessageLevel level
,
76 const std::string
& message
);
77 void OnAppWindowClosed();
78 void OnSetFrameName(const std::string
& name
);
80 Dispatcher
* dispatcher_
;
82 // Type of view attached with RenderView.
85 // Id of the tab which the RenderView is attached to.
88 // Id number of browser window which RenderView is attached to.
89 int browser_window_id_
;
91 DISALLOW_COPY_AND_ASSIGN(ExtensionHelper
);
94 } // namespace extensions
96 #endif // EXTENSIONS_RENDERER_EXTENSION_HELPER_H_