OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 // Current text input composition text. Empty if no composition is in | 846 // Current text input composition text. Empty if no composition is in |
847 // progress. | 847 // progress. |
848 base::string16 pepper_composition_text_; | 848 base::string16 pepper_composition_text_; |
849 | 849 |
850 PluginPowerSaverHelper* plugin_power_saver_helper_; | 850 PluginPowerSaverHelper* plugin_power_saver_helper_; |
851 #endif | 851 #endif |
852 | 852 |
853 RendererWebCookieJarImpl cookie_jar_; | 853 RendererWebCookieJarImpl cookie_jar_; |
854 | 854 |
855 // All the registered observers. | 855 // All the registered observers. |
856 ObserverList<RenderFrameObserver> observers_; | 856 base::ObserverList<RenderFrameObserver> observers_; |
857 | 857 |
858 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; | 858 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; |
859 | 859 |
860 // The node that the context menu was pressed over. | 860 // The node that the context menu was pressed over. |
861 blink::WebNode context_menu_node_; | 861 blink::WebNode context_menu_node_; |
862 | 862 |
863 // External context menu requests we're waiting for. "Internal" | 863 // External context menu requests we're waiting for. "Internal" |
864 // (WebKit-originated) context menu events will have an ID of 0 and will not | 864 // (WebKit-originated) context menu events will have an ID of 0 and will not |
865 // be in this map. | 865 // be in this map. |
866 // | 866 // |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
971 #endif | 971 #endif |
972 | 972 |
973 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 973 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
974 | 974 |
975 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 975 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
976 }; | 976 }; |
977 | 977 |
978 } // namespace content | 978 } // namespace content |
979 | 979 |
980 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 980 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |