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

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

Issue 2068413002: cc: Remove fixed raster scale, stop rasterizing with will-change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 6 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 void DidCompletePageScaleAnimation() override; 196 void DidCompletePageScaleAnimation() override;
197 void DidCompleteSwapBuffers() override; 197 void DidCompleteSwapBuffers() override;
198 void ForwardCompositorProto(const std::vector<uint8_t>& proto) override; 198 void ForwardCompositorProto(const std::vector<uint8_t>& proto) override;
199 bool IsClosing() const override; 199 bool IsClosing() const override;
200 void OnSwapBuffersAborted() override; 200 void OnSwapBuffersAborted() override;
201 void OnSwapBuffersComplete() override; 201 void OnSwapBuffersComplete() override;
202 void OnSwapBuffersPosted() override; 202 void OnSwapBuffersPosted() override;
203 void RequestScheduleAnimation() override; 203 void RequestScheduleAnimation() override;
204 void UpdateVisualState() override; 204 void UpdateVisualState() override;
205 void WillBeginCompositorFrame() override; 205 void WillBeginCompositorFrame() override;
206 void ReportFixedRasterScaleUseCounters(
207 bool has_blurry_content,
208 bool has_potential_performance_regression) override;
209 206
210 // RenderWidgetInputHandlerDelegate 207 // RenderWidgetInputHandlerDelegate
211 void FocusChangeComplete() override; 208 void FocusChangeComplete() override;
212 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; 209 bool HasTouchEventHandlersAt(const gfx::Point& point) const override;
213 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event, 210 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event,
214 const gfx::Vector2dF& unused_delta, 211 const gfx::Vector2dF& unused_delta,
215 bool event_processed) override; 212 bool event_processed) override;
216 213
217 void OnDidHandleKeyEvent() override; 214 void OnDidHandleKeyEvent() override;
218 void OnDidOverscroll(const DidOverscrollParams& params) override; 215 void OnDidOverscroll(const DidOverscrollParams& params) override;
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 772
776 // Indicates whether this widget has focus. 773 // Indicates whether this widget has focus.
777 bool has_focus_; 774 bool has_focus_;
778 775
779 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 776 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
780 }; 777 };
781 778
782 } // namespace content 779 } // namespace content
783 780
784 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 781 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor_unittest.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698