| 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);
|
| };
|
|
|
|
|