| 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 602 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| 603 const gfx::Point& screen_point, | 603 const gfx::Point& screen_point, |
| 604 bool ended, | 604 bool ended, |
| 605 WebKit::WebDragOperation drag_operation); | 605 WebKit::WebDragOperation drag_operation); |
| 606 void OnDragSourceSystemDragEnded(); | 606 void OnDragSourceSystemDragEnded(); |
| 607 void OnInstallMissingPlugin(); | 607 void OnInstallMissingPlugin(); |
| 608 void OnFileChooserResponse(const std::vector<FilePath>& file_names); | 608 void OnFileChooserResponse(const std::vector<FilePath>& file_names); |
| 609 void OnEnableViewSourceMode(); | 609 void OnEnableViewSourceMode(); |
| 610 void OnEnableIntrinsicWidthChangedMode(); | 610 void OnEnableIntrinsicWidthChangedMode(); |
| 611 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 611 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 612 void OnMediaPlayerActionAt(int x, | 612 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 613 int y, | 613 const WebKit::WebMediaPlayerAction& action); |
| 614 const MediaPlayerAction& action); | |
| 615 void OnNotifyRendererViewType(ViewType::Type view_type); | 614 void OnNotifyRendererViewType(ViewType::Type view_type); |
| 616 void OnUpdateBrowserWindowId(int window_id); | 615 void OnUpdateBrowserWindowId(int window_id); |
| 617 void OnExecuteCode(int request_id, | 616 void OnExecuteCode(int request_id, |
| 618 const std::string& extension_id, | 617 const std::string& extension_id, |
| 619 bool is_js_code, | 618 bool is_js_code, |
| 620 const std::string& code_string); | 619 const std::string& code_string); |
| 621 void OnUpdateBackForwardListCount(int back_list_count, | 620 void OnUpdateBackForwardListCount(int back_list_count, |
| 622 int forward_list_count); | 621 int forward_list_count); |
| 623 void OnGetAccessibilityInfo( | 622 void OnGetAccessibilityInfo( |
| 624 const webkit_glue::WebAccessibility::InParams& in_params, | 623 const webkit_glue::WebAccessibility::InParams& in_params, |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 | 980 |
| 982 // ImageResourceFetchers schedule via DownloadImage. | 981 // ImageResourceFetchers schedule via DownloadImage. |
| 983 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; | 982 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; |
| 984 ImageResourceFetcherSet image_fetchers_; | 983 ImageResourceFetcherSet image_fetchers_; |
| 985 | 984 |
| 986 | 985 |
| 987 DISALLOW_COPY_AND_ASSIGN(RenderView); | 986 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 988 }; | 987 }; |
| 989 | 988 |
| 990 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 989 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |