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

Side by Side Diff: content/browser/frame_host/render_widget_host_view_guest.h

Issue 2527283003: cc: Introduce BeginFrame sequence numbers and acknowledgements.
Patch Set: Address Brian's comments. Created 4 years 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "cc/output/begin_frame_args.h"
16 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 17 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
17 #include "content/common/content_export.h" 18 #include "content/common/content_export.h"
18 #include "content/common/cursors/webcursor.h" 19 #include "content/common/cursors/webcursor.h"
19 #include "third_party/WebKit/public/platform/WebInputEvent.h" 20 #include "third_party/WebKit/public/platform/WebInputEvent.h"
20 #include "ui/events/event.h" 21 #include "ui/events/event.h"
21 #include "ui/events/gestures/gesture_recognizer.h" 22 #include "ui/events/gestures/gesture_recognizer.h"
22 #include "ui/events/gestures/gesture_types.h" 23 #include "ui/events/gestures/gesture_types.h"
23 #include "ui/gfx/geometry/rect.h" 24 #include "ui/gfx/geometry/rect.h"
24 #include "ui/gfx/geometry/vector2d_f.h" 25 #include "ui/gfx/geometry/vector2d_f.h"
25 #include "ui/gfx/native_widget_types.h" 26 #include "ui/gfx/native_widget_types.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // The platform view for this RenderWidgetHostView. 159 // The platform view for this RenderWidgetHostView.
159 // RenderWidgetHostViewGuest mostly only cares about stuff related to 160 // RenderWidgetHostViewGuest mostly only cares about stuff related to
160 // compositing, the rest are directly forwarded to this |platform_view_|. 161 // compositing, the rest are directly forwarded to this |platform_view_|.
161 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; 162 base::WeakPtr<RenderWidgetHostViewBase> platform_view_;
162 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); 163 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest);
163 }; 164 };
164 165
165 } // namespace content 166 } // namespace content
166 167
167 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 168 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698