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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 virtual void EnableSuddenTermination(); | 157 virtual void EnableSuddenTermination(); |
158 virtual void DisableSuddenTermination(); | 158 virtual void DisableSuddenTermination(); |
159 virtual void QueryFormFieldAutofill(const std::wstring& field_name, | 159 virtual void QueryFormFieldAutofill(const std::wstring& field_name, |
160 const std::wstring& text, | 160 const std::wstring& text, |
161 int64 node_id); | 161 int64 node_id); |
162 virtual void RemoveStoredAutofillEntry(const std::wstring& field_name, | 162 virtual void RemoveStoredAutofillEntry(const std::wstring& field_name, |
163 const std::wstring& text); | 163 const std::wstring& text); |
164 virtual void UpdateTargetURL(WebView* webview, | 164 virtual void UpdateTargetURL(WebView* webview, |
165 const GURL& url); | 165 const GURL& url); |
166 virtual void RunFileChooser(bool multi_select, | 166 virtual void RunFileChooser(bool multi_select, |
167 const std::wstring& title, | 167 const string16& title, |
168 const std::wstring& initial_filename, | 168 const FilePath& initial_filename, |
169 const std::wstring& filter, | |
170 WebFileChooserCallback* file_chooser); | 169 WebFileChooserCallback* file_chooser); |
171 virtual void AddMessageToConsole(WebView* webview, | 170 virtual void AddMessageToConsole(WebView* webview, |
172 const std::wstring& message, | 171 const std::wstring& message, |
173 unsigned int line_no, | 172 unsigned int line_no, |
174 const std::wstring& source_id); | 173 const std::wstring& source_id); |
175 | 174 |
176 virtual void DebuggerOutput(const std::wstring& out); | 175 virtual void DebuggerOutput(const std::wstring& out); |
177 | 176 |
178 virtual void DidStartLoading(WebView* webview); | 177 virtual void DidStartLoading(WebView* webview); |
179 virtual void DidStopLoading(WebView* webview); | 178 virtual void DidStopLoading(WebView* webview); |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 // A set of audio renderers registered to use IPC for audio output. | 834 // A set of audio renderers registered to use IPC for audio output. |
836 IDMap<AudioRendererImpl> audio_renderers_; | 835 IDMap<AudioRendererImpl> audio_renderers_; |
837 | 836 |
838 // Maps pending callback IDs to their frames. | 837 // Maps pending callback IDs to their frames. |
839 IDMap<WebFrame> pending_extension_callbacks_; | 838 IDMap<WebFrame> pending_extension_callbacks_; |
840 | 839 |
841 DISALLOW_COPY_AND_ASSIGN(RenderView); | 840 DISALLOW_COPY_AND_ASSIGN(RenderView); |
842 }; | 841 }; |
843 | 842 |
844 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 843 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |