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

Side by Side Diff: content/browser/renderer_host/compositor_impl_android.h

Issue 511253003: Made Blink aware of top controls offset (Chromium-side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed crash + mojo example build break Created 6 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
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.h » ('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) 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_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/cancelable_callback.h" 9 #include "base/cancelable_callback.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 virtual void SetWindowBounds(const gfx::Size& size) OVERRIDE; 68 virtual void SetWindowBounds(const gfx::Size& size) OVERRIDE;
69 virtual void SetHasTransparentBackground(bool flag) OVERRIDE; 69 virtual void SetHasTransparentBackground(bool flag) OVERRIDE;
70 virtual void SetNeedsComposite() OVERRIDE; 70 virtual void SetNeedsComposite() OVERRIDE;
71 virtual UIResourceProvider& GetUIResourceProvider() OVERRIDE; 71 virtual UIResourceProvider& GetUIResourceProvider() OVERRIDE;
72 72
73 // LayerTreeHostClient implementation. 73 // LayerTreeHostClient implementation.
74 virtual void WillBeginMainFrame(int frame_id) OVERRIDE {} 74 virtual void WillBeginMainFrame(int frame_id) OVERRIDE {}
75 virtual void DidBeginMainFrame() OVERRIDE {} 75 virtual void DidBeginMainFrame() OVERRIDE {}
76 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE {} 76 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE {}
77 virtual void Layout() OVERRIDE; 77 virtual void Layout() OVERRIDE;
78 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, 78 virtual void ApplyViewportDeltas(
79 float page_scale) OVERRIDE {} 79 const gfx::Vector2d& scroll_delta,
80 float page_scale,
81 float top_controls_delta) OVERRIDE {}
80 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) 82 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback)
81 OVERRIDE; 83 OVERRIDE;
82 virtual void DidInitializeOutputSurface() OVERRIDE {} 84 virtual void DidInitializeOutputSurface() OVERRIDE {}
83 virtual void WillCommit() OVERRIDE {} 85 virtual void WillCommit() OVERRIDE {}
84 virtual void DidCommit() OVERRIDE; 86 virtual void DidCommit() OVERRIDE;
85 virtual void DidCommitAndDrawFrame() OVERRIDE {} 87 virtual void DidCommitAndDrawFrame() OVERRIDE {}
86 virtual void DidCompleteSwapBuffers() OVERRIDE; 88 virtual void DidCompleteSwapBuffers() OVERRIDE;
87 89
88 // LayerTreeHostSingleThreadClient implementation. 90 // LayerTreeHostSingleThreadClient implementation.
89 virtual void ScheduleComposite() OVERRIDE; 91 virtual void ScheduleComposite() OVERRIDE;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 base::TimeTicks last_vsync_; 185 base::TimeTicks last_vsync_;
184 186
185 base::WeakPtrFactory<CompositorImpl> weak_factory_; 187 base::WeakPtrFactory<CompositorImpl> weak_factory_;
186 188
187 DISALLOW_COPY_AND_ASSIGN(CompositorImpl); 189 DISALLOW_COPY_AND_ASSIGN(CompositorImpl);
188 }; 190 };
189 191
190 } // namespace content 192 } // namespace content
191 193
192 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ 194 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698