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

Side by Side Diff: content/public/browser/android/synchronous_compositor_client.h

Issue 1052103002: Revert of cc: Make scheduling be driven by vsync for android webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "ui/gfx/geometry/size_f.h" 9 #include "ui/gfx/geometry/size_f.h"
10 #include "ui/gfx/geometry/vector2d_f.h" 10 #include "ui/gfx/geometry/vector2d_f.h"
(...skipping 21 matching lines...) Expand all
32 const gfx::SizeF& scrollable_size, 32 const gfx::SizeF& scrollable_size,
33 float page_scale_factor, 33 float page_scale_factor,
34 float min_page_scale_factor, 34 float min_page_scale_factor,
35 float max_page_scale_factor) = 0; 35 float max_page_scale_factor) = 0;
36 virtual bool IsExternalFlingActive() const = 0; 36 virtual bool IsExternalFlingActive() const = 0;
37 37
38 virtual void DidOverscroll(gfx::Vector2dF accumulated_overscroll, 38 virtual void DidOverscroll(gfx::Vector2dF accumulated_overscroll,
39 gfx::Vector2dF latest_overscroll_delta, 39 gfx::Vector2dF latest_overscroll_delta,
40 gfx::Vector2dF current_fling_velocity) = 0; 40 gfx::Vector2dF current_fling_velocity) = 0;
41 41
42 virtual void PostInvalidate() = 0; 42 // When true, should periodically call
43 // SynchronousCompositorOutputSurface::DemandDrawHw. Note that this value
44 // can change inside DemandDrawHw call.
45 virtual void SetContinuousInvalidate(bool invalidate) = 0;
43 46
44 virtual void DidUpdateContent() = 0; 47 virtual void DidUpdateContent() = 0;
45 48
46 protected: 49 protected:
47 SynchronousCompositorClient() {} 50 SynchronousCompositorClient() {}
48 virtual ~SynchronousCompositorClient() {} 51 virtual ~SynchronousCompositorClient() {}
49 52
50 private: 53 private:
51 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorClient); 54 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorClient);
52 }; 55 };
53 56
54 } // namespace content 57 } // namespace content
55 58
56 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ 59 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/browser/android/synchronous_compositor.h ('k') | content/public/test/test_synchronous_compositor_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698