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

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

Issue 11554030: <webview>: Add name attribute (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added tests Created 8 years 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 const GURL& old_url, 57 const GURL& old_url,
58 const GURL& new_url, 58 const GURL& new_url,
59 bool is_top_level); 59 bool is_top_level);
60 void OnSetCursor(int instance_id, 60 void OnSetCursor(int instance_id,
61 const WebCursor& cursor); 61 const WebCursor& cursor);
62 void OnPluginAtPositionRequest(const IPC::Message& message, 62 void OnPluginAtPositionRequest(const IPC::Message& message,
63 int request_id, 63 int request_id,
64 const gfx::Point& position); 64 const gfx::Point& position);
65 void OnGuestUnresponsive(int instance_id, int process_id); 65 void OnGuestUnresponsive(int instance_id, int process_id);
66 void OnGuestResponsive(int instance_id, int process_id); 66 void OnGuestResponsive(int instance_id, int process_id);
67 void OnUpdatedName(int instance_id, const std::string& name);
67 68
68 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); 69 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl);
69 }; 70 };
70 71
71 } // namespace content 72 } // namespace content
72 73
73 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 74 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698