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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_embedder_helper.h

Issue 10917225: Browser Plugin: Reload and Stop operations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated 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_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_
6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_ 6 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 void OnNavigateGuest(int instance_id, 55 void OnNavigateGuest(int instance_id,
56 int64 frame_id, 56 int64 frame_id,
57 const std::string& src, 57 const std::string& src,
58 const gfx::Size& size); 58 const gfx::Size& size);
59 void OnResizeGuest(int instance_id, 59 void OnResizeGuest(int instance_id,
60 const BrowserPluginHostMsg_ResizeGuest_Params& params); 60 const BrowserPluginHostMsg_ResizeGuest_Params& params);
61 void OnUpdateRectACK(int instance_id, int message_id, const gfx::Size& size); 61 void OnUpdateRectACK(int instance_id, int message_id, const gfx::Size& size);
62 void OnHandleInputEvent(const IPC::SyncMessage& message, bool* handled); 62 void OnHandleInputEvent(const IPC::SyncMessage& message, bool* handled);
63 void OnSetFocus(int instance_id, bool focused); 63 void OnSetFocus(int instance_id, bool focused);
64 void OnPluginDestroyed(int instance_id); 64 void OnPluginDestroyed(int instance_id);
65 void OnStop(int instance_id);
66 void OnReload(int instance_id);
65 67
66 BrowserPluginEmbedder* embedder_; 68 BrowserPluginEmbedder* embedder_;
67 69
68 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedderHelper); 70 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedderHelper);
69 }; 71 };
70 72
71 } // namespace content 73 } // namespace content
72 74
73 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_ 75 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698