| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <queue> | 10 #include <queue> |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 void OnSelectAll(); | 534 void OnSelectAll(); |
| 535 void OnCopyImageAt(int x, int y); | 535 void OnCopyImageAt(int x, int y); |
| 536 void OnExecuteEditCommand(const std::string& name, const std::string& value); | 536 void OnExecuteEditCommand(const std::string& name, const std::string& value); |
| 537 void OnSetupDevToolsClient(); | 537 void OnSetupDevToolsClient(); |
| 538 void OnCancelDownload(int32 download_id); | 538 void OnCancelDownload(int32 download_id); |
| 539 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); | 539 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); |
| 540 void OnDeterminePageText(); | 540 void OnDeterminePageText(); |
| 541 void OnZoom(int function); | 541 void OnZoom(int function); |
| 542 void OnInsertText(const string16& text); | 542 void OnInsertText(const string16& text); |
| 543 void OnSetPageEncoding(const std::string& encoding_name); | 543 void OnSetPageEncoding(const std::string& encoding_name); |
| 544 void OnResetPageEncodingToDefault(); |
| 544 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); | 545 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); |
| 545 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( | 546 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( |
| 546 const std::vector<GURL>& links, | 547 const std::vector<GURL>& links, |
| 547 const std::vector<FilePath>& local_paths, | 548 const std::vector<FilePath>& local_paths, |
| 548 const FilePath& local_directory_name); | 549 const FilePath& local_directory_name); |
| 549 void OnUploadFileRequest(const ViewMsg_UploadFile_Params& p); | 550 void OnUploadFileRequest(const ViewMsg_UploadFile_Params& p); |
| 550 void OnFormFill(const FormData& form); | 551 void OnFormFill(const FormData& form); |
| 551 void OnFillPasswordForm( | 552 void OnFillPasswordForm( |
| 552 const webkit_glue::PasswordFormDomManager::FillData& form_data); | 553 const webkit_glue::PasswordFormDomManager::FillData& form_data); |
| 553 void OnDragTargetDragEnter(const WebDropData& drop_data, | 554 void OnDragTargetDragEnter(const WebDropData& drop_data, |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 // page id for the last navigation sent to the browser. | 893 // page id for the last navigation sent to the browser. |
| 893 int32 last_top_level_navigation_page_id_; | 894 int32 last_top_level_navigation_page_id_; |
| 894 | 895 |
| 895 // The settings this render view initialized WebKit with. | 896 // The settings this render view initialized WebKit with. |
| 896 WebPreferences webkit_preferences_; | 897 WebPreferences webkit_preferences_; |
| 897 | 898 |
| 898 DISALLOW_COPY_AND_ASSIGN(RenderView); | 899 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 899 }; | 900 }; |
| 900 | 901 |
| 901 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 902 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |