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

Side by Side Diff: content/renderer/gpu/render_widget_compositor.h

Issue 2390923002: Fix blurry content after disabling dev tools emulation (Closed)
Patch Set: Add function for LayerTreeHostRemote Created 4 years, 2 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
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_GPU_RENDER_WIDGET_COMPOSITOR_H_ 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 void registerViewportLayers( 141 void registerViewportLayers(
142 const blink::WebLayer* overscrollElasticityLayer, 142 const blink::WebLayer* overscrollElasticityLayer,
143 const blink::WebLayer* pageScaleLayer, 143 const blink::WebLayer* pageScaleLayer,
144 const blink::WebLayer* innerViewportScrollLayer, 144 const blink::WebLayer* innerViewportScrollLayer,
145 const blink::WebLayer* outerViewportScrollLayer) override; 145 const blink::WebLayer* outerViewportScrollLayer) override;
146 void clearViewportLayers() override; 146 void clearViewportLayers() override;
147 void registerSelection(const blink::WebSelection& selection) override; 147 void registerSelection(const blink::WebSelection& selection) override;
148 void clearSelection() override; 148 void clearSelection() override;
149 void setMutatorClient( 149 void setMutatorClient(
150 std::unique_ptr<blink::WebCompositorMutatorClient>) override; 150 std::unique_ptr<blink::WebCompositorMutatorClient>) override;
151 void forceRecalculateRasterScales() override;
151 void setEventListenerProperties( 152 void setEventListenerProperties(
152 blink::WebEventListenerClass eventClass, 153 blink::WebEventListenerClass eventClass,
153 blink::WebEventListenerProperties properties) override; 154 blink::WebEventListenerProperties properties) override;
154 blink::WebEventListenerProperties eventListenerProperties( 155 blink::WebEventListenerProperties eventListenerProperties(
155 blink::WebEventListenerClass eventClass) const override; 156 blink::WebEventListenerClass eventClass) const override;
156 void setHaveScrollEventHandlers(bool) override; 157 void setHaveScrollEventHandlers(bool) override;
157 bool haveScrollEventHandlers() const override; 158 bool haveScrollEventHandlers() const override;
158 int layerTreeId() const override; 159 int layerTreeId() const override;
159 void setShowFPSCounter(bool show) override; 160 void setShowFPSCounter(bool show) override;
160 void setShowPaintRects(bool show) override; 161 void setShowPaintRects(bool show) override;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_; 230 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_;
230 231
231 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; 232 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_;
232 233
233 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; 234 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_;
234 }; 235 };
235 236
236 } // namespace content 237 } // namespace content
237 238
238 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 239 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698