| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 return delay_seconds_for_form_state_sync_; | 407 return delay_seconds_for_form_state_sync_; |
| 408 } | 408 } |
| 409 void set_delay_seconds_for_form_state_sync(int delay_in_seconds) { | 409 void set_delay_seconds_for_form_state_sync(int delay_in_seconds) { |
| 410 delay_seconds_for_form_state_sync_ = delay_in_seconds; | 410 delay_seconds_for_form_state_sync_ = delay_in_seconds; |
| 411 } | 411 } |
| 412 | 412 |
| 413 AudioMessageFilter* audio_message_filter() { return audio_message_filter_; } | 413 AudioMessageFilter* audio_message_filter() { return audio_message_filter_; } |
| 414 | 414 |
| 415 void OnClearFocusedNode(); | 415 void OnClearFocusedNode(); |
| 416 | 416 |
| 417 void SendExtensionRequest(const std::string& name, const std::string& args, | 417 void SendExtensionRequest(const std::string& name, const ListValue& args, |
| 418 int request_id, bool has_callback); | 418 int request_id, bool has_callback); |
| 419 void OnExtensionResponse(int request_id, bool success, | 419 void OnExtensionResponse(int request_id, bool success, |
| 420 const std::string& response, | 420 const std::string& response, |
| 421 const std::string& error); | 421 const std::string& error); |
| 422 | 422 |
| 423 void OnSetExtensionViewMode(const std::string& mode); | 423 void OnSetExtensionViewMode(const std::string& mode); |
| 424 | 424 |
| 425 const WebPreferences& webkit_preferences() const { | 425 const WebPreferences& webkit_preferences() const { |
| 426 return webkit_preferences_; | 426 return webkit_preferences_; |
| 427 } | 427 } |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 | 978 |
| 979 // ImageResourceFetchers schedule via DownloadImage. | 979 // ImageResourceFetchers schedule via DownloadImage. |
| 980 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; | 980 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; |
| 981 ImageResourceFetcherSet image_fetchers_; | 981 ImageResourceFetcherSet image_fetchers_; |
| 982 | 982 |
| 983 | 983 |
| 984 DISALLOW_COPY_AND_ASSIGN(RenderView); | 984 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 985 }; | 985 }; |
| 986 | 986 |
| 987 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 987 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |