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

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

Issue 4989002: Firing event to broker without worker thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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 // Funnel of Chrome Extension Infobar Events. 5 // Funnel of Chrome Extension Infobar Events.
6 6
7 #ifndef CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_ 7 #ifndef CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_
8 #define CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_ 8 #define CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_
9 9
10 #include "ceee/ie/plugin/bho/events_funnel.h" 10 #include "ceee/ie/plugin/bho/events_funnel.h"
11 11
12 // Implements a set of methods to send infobar related events to the Broker. 12 // Implements a set of methods to send infobar related events to the Broker.
13 class InfobarEventsFunnel : public EventsFunnel { 13 class InfobarEventsFunnel : public EventsFunnel {
14 public: 14 public:
15 InfobarEventsFunnel() : EventsFunnel(false) {} 15 InfobarEventsFunnel() {}
16 16
17 // Sends the infobar.onDocumentComplete event to the Broker. 17 // Sends the infobar.onDocumentComplete event to the Broker.
18 virtual HRESULT OnDocumentComplete(); 18 virtual HRESULT OnDocumentComplete();
19 19
20 private: 20 private:
21 DISALLOW_COPY_AND_ASSIGN(InfobarEventsFunnel); 21 DISALLOW_COPY_AND_ASSIGN(InfobarEventsFunnel);
22 }; 22 };
23 23
24 #endif // CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_ 24 #endif // CEEE_IE_PLUGIN_BHO_INFOBAR_EVENTS_FUNNEL_H_
OLDNEW
« no previous file with comments | « ceee/ie/plugin/bho/events_funnel_unittest.cc ('k') | ceee/ie/plugin/bho/mediumtest_browser_helper_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698