| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 874 void OnSetAccessibilityFocus(int acc_obj_id); | 874 void OnSetAccessibilityFocus(int acc_obj_id); |
| 875 void OnSetActive(bool active); | 875 void OnSetActive(bool active); |
| 876 void OnSetAltErrorPageURL(const GURL& gurl); | 876 void OnSetAltErrorPageURL(const GURL& gurl); |
| 877 void OnSetBackground(const SkBitmap& background); | 877 void OnSetBackground(const SkBitmap& background); |
| 878 void OnSetContentSettingsForLoadingURL( | 878 void OnSetContentSettingsForLoadingURL( |
| 879 const GURL& url, | 879 const GURL& url, |
| 880 const ContentSettings& content_settings); | 880 const ContentSettings& content_settings); |
| 881 void OnSetDOMUIProperty(const std::string& name, const std::string& value); | 881 void OnSetDOMUIProperty(const std::string& name, const std::string& value); |
| 882 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 882 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| 883 void OnSetInitialFocus(bool reverse); | 883 void OnSetInitialFocus(bool reverse); |
| 884 void OnScrollFocusedEditableNodeIntoView(); |
| 884 void OnSetPageEncoding(const std::string& encoding_name); | 885 void OnSetPageEncoding(const std::string& encoding_name); |
| 885 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 886 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 886 void OnSetupDevToolsClient(); | 887 void OnSetupDevToolsClient(); |
| 887 #if defined(OS_MACOSX) | 888 #if defined(OS_MACOSX) |
| 888 void OnSetWindowVisibility(bool visible); | 889 void OnSetWindowVisibility(bool visible); |
| 889 #endif | 890 #endif |
| 890 void OnSetZoomLevel(double zoom_level); | 891 void OnSetZoomLevel(double zoom_level); |
| 891 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 892 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 892 void OnShouldClose(); | 893 void OnShouldClose(); |
| 893 void OnStop(); | 894 void OnStop(); |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1401 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
| 1401 // sections rather than throwing it randomly at the end. If you're adding a | 1402 // sections rather than throwing it randomly at the end. If you're adding a |
| 1402 // bunch of stuff, you should probably create a helper class and put your | 1403 // bunch of stuff, you should probably create a helper class and put your |
| 1403 // data and methods on that to avoid bloating RenderView more. | 1404 // data and methods on that to avoid bloating RenderView more. |
| 1404 // --------------------------------------------------------------------------- | 1405 // --------------------------------------------------------------------------- |
| 1405 | 1406 |
| 1406 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1407 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1407 }; | 1408 }; |
| 1408 | 1409 |
| 1409 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1410 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |