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

Unified Diff: extensions/browser/extension_message_filter.h

Issue 856563002: Added the infrastructure for surfaceProxy.onResize() and SurfaceView.onResize() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed code from one non-essential function that was causing tests to fail. It will be re-added in… Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | extensions/browser/extension_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_message_filter.h
diff --git a/extensions/browser/extension_message_filter.h b/extensions/browser/extension_message_filter.h
index 0bc33d2a3b93c21617a728074db70dbc731ab2e7..bfa876a116af08be8e79bea593fd15023ede2651 100644
--- a/extensions/browser/extension_message_filter.h
+++ b/extensions/browser/extension_message_filter.h
@@ -25,6 +25,10 @@ class BrowserContext;
class WebContents;
}
+namespace gfx {
+class Size;
+}
+
namespace extensions {
class InfoMap;
@@ -66,7 +70,8 @@ class ExtensionMessageFilter : public content::BrowserMessageFilter {
const base::DictionaryValue& attach_params);
void OnExtensionCreateMimeHandlerViewGuest(int render_frame_id,
const std::string& view_id,
- int element_instance_id);
+ int element_instance_id,
+ const gfx::Size& element_size);
void OnExtensionRemoveLazyListener(const std::string& extension_id,
const std::string& event_name);
void OnExtensionAddFilteredListener(const std::string& extension_id,
@@ -93,6 +98,7 @@ class ExtensionMessageFilter : public content::BrowserMessageFilter {
void MimeHandlerViewGuestCreatedCallback(int element_instance_id,
int embedder_render_process_id,
int embedder_render_frame_id,
+ const gfx::Size& element_size,
content::WebContents* web_contents);
const int render_process_id_;
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | extensions/browser/extension_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698