Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: ceee/ie/plugin/bho/browser_helper_object.h

Issue 5360002: Use BRANDING for IE CEEE. Simplify chrome_dll_version handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Chrome->Chromium Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // IE browser helper object implementation. 5 // IE browser helper object implementation.
6 #ifndef CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ 6 #ifndef CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_
7 #define CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ 7 #define CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_
8 8
9 #include <atlbase.h> 9 #include <atlbase.h>
10 #include <atlcom.h> 10 #include <atlcom.h>
(...skipping 15 matching lines...) Expand all
26 #include "ceee/ie/plugin/bho/tab_events_funnel.h" 26 #include "ceee/ie/plugin/bho/tab_events_funnel.h"
27 #include "ceee/ie/common/chrome_frame_host.h" 27 #include "ceee/ie/common/chrome_frame_host.h"
28 #include "ceee/ie/plugin/bho/frame_event_handler.h" 28 #include "ceee/ie/plugin/bho/frame_event_handler.h"
29 #include "ceee/ie/plugin/bho/extension_port_manager.h" 29 #include "ceee/ie/plugin/bho/extension_port_manager.h"
30 #include "ceee/ie/plugin/bho/tool_band_visibility.h" 30 #include "ceee/ie/plugin/bho/tool_band_visibility.h"
31 #include "ceee/ie/plugin/bho/web_browser_events_source.h" 31 #include "ceee/ie/plugin/bho/web_browser_events_source.h"
32 #include "ceee/ie/plugin/bho/web_progress_notifier.h" 32 #include "ceee/ie/plugin/bho/web_progress_notifier.h"
33 #include "ceee/ie/plugin/scripting/userscripts_librarian.h" 33 #include "ceee/ie/plugin/scripting/userscripts_librarian.h"
34 #include "ceee/ie/plugin/scripting/content_script_native_api.h" 34 #include "ceee/ie/plugin/scripting/content_script_native_api.h"
35 #include "ceee/ie/plugin/toolband/resource.h" 35 #include "ceee/ie/plugin/toolband/resource.h"
36
36 #include "broker_lib.h" // NOLINT 37 #include "broker_lib.h" // NOLINT
37 #include "toolband.h" // NOLINT 38 #include "toolband.h" // NOLINT
39 #include "version.h" // NOLINT
38 40
39 // Implementation of an IE browser helper object. 41 // Implementation of an IE browser helper object.
40 class ATL_NO_VTABLE BrowserHelperObject 42 class ATL_NO_VTABLE BrowserHelperObject
41 : public CComObjectRootEx<CComSingleThreadModel>, 43 : public CComObjectRootEx<CComSingleThreadModel>,
42 public CComCoClass<BrowserHelperObject, &CLSID_BrowserHelperObject>, 44 public CComCoClass<BrowserHelperObject, &CLSID_BrowserHelperObject>,
43 public IObjectWithSiteImpl<BrowserHelperObject>, 45 public IObjectWithSiteImpl<BrowserHelperObject>,
44 public IDispEventSimpleImpl<0, 46 public IDispEventSimpleImpl<0,
45 BrowserHelperObject, 47 BrowserHelperObject,
46 &DIID_DWebBrowserEvents2>, 48 &DIID_DWebBrowserEvents2>,
47 public IPersistImpl<BrowserHelperObject>, 49 public IPersistImpl<BrowserHelperObject>,
48 public IFrameEventHandlerHost, 50 public IFrameEventHandlerHost,
49 public IExtensionPortMessagingProvider, 51 public IExtensionPortMessagingProvider,
50 public IChromeFrameHostEvents, 52 public IChromeFrameHostEvents,
51 public ToolBandVisibility, 53 public ToolBandVisibility,
52 public WebBrowserEventsSource { 54 public WebBrowserEventsSource {
53 public: 55 public:
54 DECLARE_REGISTRY_RESOURCEID_EX(IDR_BROWSERHELPEROBJECT) 56 DECLARE_REGISTRY_RESOURCEID_EX(IDR_BROWSERHELPEROBJECT)
55 BEGIN_REGISTRY_MAP(BrowserHelperObject) 57 BEGIN_REGISTRY_MAP(BrowserHelperObject)
56 REGMAP_UUID("CLSID", CLSID_BrowserHelperObject) 58 REGMAP_UUID("CLSID", CLSID_BrowserHelperObject)
57 REGMAP_RESOURCE("NAME", IDS_CEEE_NAME) 59 REGMAP_RESOURCE("NAME", IDS_CEEE_BHO_NAME)
58 END_REGISTRY_MAP() 60 END_REGISTRY_MAP()
59 61
60 DECLARE_NOT_AGGREGATABLE(BrowserHelperObject) 62 DECLARE_NOT_AGGREGATABLE(BrowserHelperObject)
61 63
62 BEGIN_COM_MAP(BrowserHelperObject) 64 BEGIN_COM_MAP(BrowserHelperObject)
63 COM_INTERFACE_ENTRY(IObjectWithSite) 65 COM_INTERFACE_ENTRY(IObjectWithSite)
64 COM_INTERFACE_ENTRY(IPersist) 66 COM_INTERFACE_ENTRY(IPersist)
65 COM_INTERFACE_ENTRY_IID(IID_IFrameEventHandlerHost, IFrameEventHandlerHost) 67 COM_INTERFACE_ENTRY_IID(IID_IFrameEventHandlerHost, IFrameEventHandlerHost)
66 END_COM_MAP() 68 END_COM_MAP()
67 69
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 395
394 // Used during initialization to get the tab information from Chrome and 396 // Used during initialization to get the tab information from Chrome and
395 // register ourselves with the broker. 397 // register ourselves with the broker.
396 HRESULT RegisterTabInfo(); 398 HRESULT RegisterTabInfo();
397 399
398 typedef std::deque<Task*> DeferredCallListType; 400 typedef std::deque<Task*> DeferredCallListType;
399 DeferredCallListType deferred_tab_id_call_; 401 DeferredCallListType deferred_tab_id_call_;
400 }; 402 };
401 403
402 #endif // CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ 404 #endif // CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698