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

Side by Side Diff: content/public/renderer/browser_plugin/browser_plugin.h

Issue 11826005: Browser Plugin: Implement BrowserPluginObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months 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
(Empty)
1 // Copyright (c) 2012 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.
4
5 #ifndef CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_
6 #define CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_
7
8 #include "content/common/content_export.h"
9 #include "ipc/ipc_sender.h"
10
11 namespace content {
12
13 class BrowserPluginMethodBinding;
14 class BrowserPluginPropertyBinding;
15
16 class CONTENT_EXPORT BrowserPlugin : public IPC::Sender {
17 public:
18 virtual ~BrowserPlugin() {}
19
20 virtual void AddMethodBinding(BrowserPluginMethodBinding* method_binding) = 0;
sadrul 2013/01/09 15:21:54 doc the methods, and comment on ownership/lifetime
Fady Samuel 2013/01/09 17:41:24 Done.
21
22 virtual void AddPropertyBinding(
23 BrowserPluginPropertyBinding* property_binding) = 0;
24
25 virtual void RequestMessage(uint32 message_id) = 0;
26 };
27
28 } // namespace content
29
30 #endif // CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698