| 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 <queue> | 9 #include <queue> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 const std::wstring& jscript); | 517 const std::wstring& jscript); |
| 518 void OnCSSInsertRequest(const std::wstring& frame_xpath, | 518 void OnCSSInsertRequest(const std::wstring& frame_xpath, |
| 519 const std::string& css); | 519 const std::string& css); |
| 520 void OnAddMessageToConsole(const string16& frame_xpath, | 520 void OnAddMessageToConsole(const string16& frame_xpath, |
| 521 const string16& message, | 521 const string16& message, |
| 522 const WebKit::WebConsoleMessage::Level&); | 522 const WebKit::WebConsoleMessage::Level&); |
| 523 void OnReservePageIDRange(int size_of_range); | 523 void OnReservePageIDRange(int size_of_range); |
| 524 | 524 |
| 525 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 525 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 526 const gfx::Point& screen_point, | 526 const gfx::Point& screen_point, |
| 527 bool ended); | 527 bool ended, bool cancelled); |
| 528 void OnDragSourceSystemDragEnded(); | 528 void OnDragSourceSystemDragEnded(); |
| 529 void OnInstallMissingPlugin(); | 529 void OnInstallMissingPlugin(); |
| 530 void OnFileChooserResponse(const std::vector<FilePath>& file_names); | 530 void OnFileChooserResponse(const std::vector<FilePath>& file_names); |
| 531 void OnEnableViewSourceMode(); | 531 void OnEnableViewSourceMode(); |
| 532 void OnEnableIntrinsicWidthChangedMode(); | 532 void OnEnableIntrinsicWidthChangedMode(); |
| 533 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 533 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 534 void OnUpdateBackForwardListCount(int back_list_count, | 534 void OnUpdateBackForwardListCount(int back_list_count, |
| 535 int forward_list_count); | 535 int forward_list_count); |
| 536 void OnGetAccessibilityInfo( | 536 void OnGetAccessibilityInfo( |
| 537 const webkit_glue::WebAccessibility::InParams& in_params, | 537 const webkit_glue::WebAccessibility::InParams& in_params, |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 // PrintWebViewHelper handles printing. Note that this object is constructed | 792 // PrintWebViewHelper handles printing. Note that this object is constructed |
| 793 // when printing for the first time but only destroyed with the RenderView. | 793 // when printing for the first time but only destroyed with the RenderView. |
| 794 scoped_ptr<PrintWebViewHelper> print_helper_; | 794 scoped_ptr<PrintWebViewHelper> print_helper_; |
| 795 | 795 |
| 796 RendererPreferences renderer_preferences_; | 796 RendererPreferences renderer_preferences_; |
| 797 | 797 |
| 798 DISALLOW_COPY_AND_ASSIGN(RenderView); | 798 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 799 }; | 799 }; |
| 800 | 800 |
| 801 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 801 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |