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

Unified Diff: chrome/browser/render_view_host.h

Issue 4088: Move a bunch of stuff out of WebContents. I removed a bunch of render view ho... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/render_view_host.h
===================================================================
--- chrome/browser/render_view_host.h (revision 2568)
+++ chrome/browser/render_view_host.h (working copy)
@@ -137,7 +137,7 @@
// ViewMsg_ShouldClose. This is where the page itself is closed. The
// unload handler is triggered here, which can block with a dialog, but cannot
// cancel the close of the page.
- virtual void FirePageUnload();
+ void FirePageUnload();
// Close the page ignoring whether it has unload events registers.
// This is called after the beforeunload and unload events have fired
@@ -215,14 +215,6 @@
void DragTargetDrop(const gfx::Point& client_pt,
const gfx::Point& screen_pt);
- // Uploads a file by automatically completing a form within the page and
- // submitting it.
- void UploadFile(const std::wstring& file_path,
- const std::wstring& form,
- const std::wstring& file,
- const std::wstring& submit,
- const std::wstring& other_values);
-
// Tell the RenderView to reserve a range of page ids of the given size.
void ReservePageIDRange(int size);
@@ -346,7 +338,7 @@
void UpdateWebPreferences(const WebPreferences& prefs);
// Request the Renderer to ask the default plugin to start installation of
- // missing plugin.
+ // missing plugin. Called by PluginInstaller.
void InstallMissingPlugin();
// Get all savable resource links from current webpage, include main

Powered by Google App Engine
This is Rietveld 408576698