| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 const std::wstring& message, | 145 const std::wstring& message, |
| 146 const std::wstring& default_value, | 146 const std::wstring& default_value, |
| 147 std::wstring* result); | 147 std::wstring* result); |
| 148 virtual bool RunBeforeUnloadConfirm(WebFrame* webframe, | 148 virtual bool RunBeforeUnloadConfirm(WebFrame* webframe, |
| 149 const std::wstring& message); | 149 const std::wstring& message); |
| 150 virtual void EnableSuddenTermination(); | 150 virtual void EnableSuddenTermination(); |
| 151 virtual void DisableSuddenTermination(); | 151 virtual void DisableSuddenTermination(); |
| 152 virtual void QueryFormFieldAutofill(const std::wstring& field_name, | 152 virtual void QueryFormFieldAutofill(const std::wstring& field_name, |
| 153 const std::wstring& text, | 153 const std::wstring& text, |
| 154 int64 node_id); | 154 int64 node_id); |
| 155 virtual void RemoveStoredAutofillEntry(const std::wstring& field_name, |
| 156 const std::wstring& text); |
| 155 virtual void UpdateTargetURL(WebView* webview, | 157 virtual void UpdateTargetURL(WebView* webview, |
| 156 const GURL& url); | 158 const GURL& url); |
| 157 virtual void RunFileChooser(bool multi_select, | 159 virtual void RunFileChooser(bool multi_select, |
| 158 const std::wstring& title, | 160 const std::wstring& title, |
| 159 const std::wstring& initial_filename, | 161 const std::wstring& initial_filename, |
| 160 const std::wstring& filter, | 162 const std::wstring& filter, |
| 161 WebFileChooserCallback* file_chooser); | 163 WebFileChooserCallback* file_chooser); |
| 162 virtual void AddMessageToConsole(WebView* webview, | 164 virtual void AddMessageToConsole(WebView* webview, |
| 163 const std::wstring& message, | 165 const std::wstring& message, |
| 164 unsigned int line_no, | 166 unsigned int line_no, |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 // change but is overridden by tests. | 801 // change but is overridden by tests. |
| 800 int delay_seconds_for_form_state_sync_; | 802 int delay_seconds_for_form_state_sync_; |
| 801 | 803 |
| 802 // A set of audio renderers registered to use IPC for audio output. | 804 // A set of audio renderers registered to use IPC for audio output. |
| 803 IDMap<AudioRendererImpl> audio_renderers_; | 805 IDMap<AudioRendererImpl> audio_renderers_; |
| 804 | 806 |
| 805 DISALLOW_COPY_AND_ASSIGN(RenderView); | 807 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 806 }; | 808 }; |
| 807 | 809 |
| 808 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 810 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |