| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 std::string GetAltHTMLForTemplate(const DictionaryValue& error_strings, | 634 std::string GetAltHTMLForTemplate(const DictionaryValue& error_strings, |
| 635 int template_resource_id) const; | 635 int template_resource_id) const; |
| 636 | 636 |
| 637 virtual void TransitionToCommittedForNewPage(); | 637 virtual void TransitionToCommittedForNewPage(); |
| 638 | 638 |
| 639 virtual void DidAddHistoryItem(); | 639 virtual void DidAddHistoryItem(); |
| 640 | 640 |
| 641 // A helper method used by WasOpenedByUserGesture. | 641 // A helper method used by WasOpenedByUserGesture. |
| 642 bool WasOpenedByUserGestureHelper() const; | 642 bool WasOpenedByUserGestureHelper() const; |
| 643 | 643 |
| 644 void DumpLoadHistograms() const; |
| 645 |
| 644 // Bitwise-ORed set of extra bindings that have been enabled. See | 646 // Bitwise-ORed set of extra bindings that have been enabled. See |
| 645 // BindingsPolicy for details. | 647 // BindingsPolicy for details. |
| 646 int enabled_bindings_; | 648 int enabled_bindings_; |
| 647 | 649 |
| 648 // DOM Automation Controller CppBoundClass. | 650 // DOM Automation Controller CppBoundClass. |
| 649 DomAutomationController dom_automation_controller_; | 651 DomAutomationController dom_automation_controller_; |
| 650 | 652 |
| 651 // Chrome page<->browser messaging CppBoundClass. | 653 // Chrome page<->browser messaging CppBoundClass. |
| 652 DOMUIBindings dom_ui_bindings_; | 654 DOMUIBindings dom_ui_bindings_; |
| 653 | 655 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 IDMap<WebFrame> pending_extension_callbacks_; | 822 IDMap<WebFrame> pending_extension_callbacks_; |
| 821 | 823 |
| 822 // The currently selected text. This is currently only updated on Linux, where | 824 // The currently selected text. This is currently only updated on Linux, where |
| 823 // it's for the selection clipboard. | 825 // it's for the selection clipboard. |
| 824 std::string selection_text_; | 826 std::string selection_text_; |
| 825 | 827 |
| 826 DISALLOW_COPY_AND_ASSIGN(RenderView); | 828 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 827 }; | 829 }; |
| 828 | 830 |
| 829 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 831 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |