Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: content/renderer/render_widget.h

Issue 1287043002: cc: Setup API to release OutputSurface from LTHClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unit test Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_;
no sievers 2015/09/10 00:00:22 remove
sohanjg 2015/09/10 15:07:23 Done.
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698