| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 #endif // defined(VIDEO_HOLE) | 808 #endif // defined(VIDEO_HOLE) |
| 809 | 809 |
| 810 // A list of RenderFrames associated with this RenderWidget. Notifications | 810 // A list of RenderFrames associated with this RenderWidget. Notifications |
| 811 // are sent to each frame in the list for events such as changing | 811 // are sent to each frame in the list for events such as changing |
| 812 // visibility state for example. | 812 // visibility state for example. |
| 813 base::ObserverList<RenderFrameImpl> render_frames_; | 813 base::ObserverList<RenderFrameImpl> render_frames_; |
| 814 | 814 |
| 815 ui::MenuSourceType context_menu_source_type_; | 815 ui::MenuSourceType context_menu_source_type_; |
| 816 bool has_host_context_menu_location_; | 816 bool has_host_context_menu_location_; |
| 817 gfx::Point host_context_menu_location_; | 817 gfx::Point host_context_menu_location_; |
| 818 scoped_ptr<cc::OutputSurface> output_surface_; |
| 818 | 819 |
| 819 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 820 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 820 }; | 821 }; |
| 821 | 822 |
| 822 } // namespace content | 823 } // namespace content |
| 823 | 824 |
| 824 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 825 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |