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

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

Issue 10829225: Browser Plugin: Add HTML5-like postMessage support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed crash + cleanup Created 8 years, 3 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
7 7
8 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 8 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 10
(...skipping 17 matching lines...) Expand all
28 28
29 // RenderProcessObserver override. Call on render thread. 29 // RenderProcessObserver override. Call on render thread.
30 virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE; 30 virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
31 private: 31 private:
32 void OnUpdateRect(int instance_id, 32 void OnUpdateRect(int instance_id,
33 int message_id, 33 int message_id,
34 const BrowserPluginMsg_UpdateRect_Params& params); 34 const BrowserPluginMsg_UpdateRect_Params& params);
35 void OnGuestCrashed(int instance_id); 35 void OnGuestCrashed(int instance_id);
36 void OnDidNavigate(int instance_id, const GURL& url); 36 void OnDidNavigate(int instance_id, const GURL& url);
37 void OnAdvanceFocus(int instance_id, bool reverse); 37 void OnAdvanceFocus(int instance_id, bool reverse);
38 void OnReceiveMessage(int instance_id,
39 int source_routing_id,
40 const string16& source_origin,
41 const string16& data);
38 42
39 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); 43 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl);
40 }; 44 };
41 45
42 } // namespace content 46 } // namespace content
43 47
44 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 48 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698