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

Unified Diff: chrome/browser/extensions/extension_host.h

Issue 7729002: Handle the ViewHostMsg_RunFileChooser IPC message which is sent by content(renderer) in RVH and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « no previous file | chrome/browser/extensions/extension_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_host.h
===================================================================
--- chrome/browser/extensions/extension_host.h (revision 98116)
+++ chrome/browser/extensions/extension_host.h (working copy)
@@ -148,6 +148,8 @@
virtual void HandleMouseLeave() OVERRIDE;
virtual void HandleMouseUp() OVERRIDE;
virtual void HandleMouseActivate() OVERRIDE;
+ virtual void RunFileChooser(RenderViewHost* render_view_host,
+ const ViewHostMsg_RunFileChooser_Params& params);
// RenderViewHostDelegate::View
virtual void CreateNewWindow(
@@ -222,7 +224,6 @@
virtual gfx::NativeView GetNativeViewOfHost();
// Message handlers.
- void OnRunFileChooser(const ViewHostMsg_RunFileChooser_Params& params);
void OnRequest(const ExtensionHostMsg_Request_Params& params);
// Handles keyboard events that were not handled by HandleKeyboardEvent().
@@ -281,9 +282,6 @@
// Used to measure how long it's been since the host was created.
PerfTimer since_created_;
- // FileSelectHelper, lazily created.
- scoped_ptr<FileSelectHelper> file_select_helper_;
-
DISALLOW_COPY_AND_ASSIGN(ExtensionHost);
};
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698