summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/render_view.h
diff options
context:
space:
mode:
authoryaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-19 19:31:28 +0000
committeryaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-19 19:31:28 +0000
commitc96f3f7abe5e1bfdfffc2fa15639bd010967b4ab (patch)
treecaac5976ba74e8767f2d041f7bc50bcbafd92aaf /chrome/renderer/render_view.h
parent3e497007ba8c68ec5b93caae053c6fbce24cb7e9 (diff)
downloadchromium_src-c96f3f7abe5e1bfdfffc2fa15639bd010967b4ab.zip
chromium_src-c96f3f7abe5e1bfdfffc2fa15639bd010967b4ab.tar.gz
chromium_src-c96f3f7abe5e1bfdfffc2fa15639bd010967b4ab.tar.bz2
Removed webkit_glue::FillFormToUploadFile from dom_operations.
No live code path uses it. Review URL: http://codereview.chromium.org/273068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/render_view.h')
-rw-r--r--chrome/renderer/render_view.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
index e9c1d33..b8fd5e7 100644
--- a/chrome/renderer/render_view.h
+++ b/chrome/renderer/render_view.h
@@ -72,7 +72,6 @@ struct ContextMenuMediaParams;
struct ThumbnailScore;
struct ViewMsg_ClosePage_Params;
struct ViewMsg_Navigate_Params;
-struct ViewMsg_UploadFile_Params;
struct WebDropData;
namespace base {
@@ -565,7 +564,6 @@ class RenderView : public RenderWidget,
const std::vector<GURL>& links,
const std::vector<FilePath>& local_paths,
const FilePath& local_directory_name);
- void OnUploadFileRequest(const ViewMsg_UploadFile_Params& p);
void OnFormFill(const FormData& form);
void OnFillPasswordForm(
const webkit_glue::PasswordFormDomManager::FillData& form_data);
@@ -669,14 +667,6 @@ class RenderView : public RenderWidget,
// accordingly, etc.).
void OnSetActive(bool active);
- // Attempt to upload the file that we are trying to process if any.
- // Reset the pending file upload data if the form was successfully
- // posted.
- void ProcessPendingUpload();
-
- // Reset the pending file upload.
- void ResetPendingUpload();
-
// Exposes the DOMAutomationController object that allows JS to send
// information to the browser process.
void BindDOMAutomationController(WebKit::WebFrame* webframe);
@@ -820,9 +810,6 @@ class RenderView : public RenderWidget,
// The alternate error page URL, if one exists.
GURL alternate_error_page_url_;
- // The pending file upload.
- scoped_ptr<webkit_glue::FileUploadData> pending_upload_data_;
-
ScopedRunnableMethodFactory<RenderView> method_factory_;
// Timer used to delay the updating of nav state (see SyncNavigationState).