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

Side by Side Diff: cc/trees/single_thread_proxy.h

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 11 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_host_unittest_no_message_loop.cc ('k') | cc/trees/single_thread_proxy.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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 CC_TREES_SINGLE_THREAD_PROXY_H_ 5 #ifndef CC_TREES_SINGLE_THREAD_PROXY_H_
6 #define CC_TREES_SINGLE_THREAD_PROXY_H_ 6 #define CC_TREES_SINGLE_THREAD_PROXY_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/cancelable_callback.h" 10 #include "base/cancelable_callback.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 void PostAnimationEventsToMainThreadOnImplThread( 99 void PostAnimationEventsToMainThreadOnImplThread(
100 scoped_ptr<AnimationEventsVector> events) override; 100 scoped_ptr<AnimationEventsVector> events) override;
101 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes, 101 bool ReduceContentsTextureMemoryOnImplThread(size_t limit_bytes,
102 int priority_cutoff) override; 102 int priority_cutoff) override;
103 bool IsInsideDraw() override; 103 bool IsInsideDraw() override;
104 void RenewTreePriority() override {} 104 void RenewTreePriority() override {}
105 void PostDelayedScrollbarFadeOnImplThread(const base::Closure& start_fade, 105 void PostDelayedScrollbarFadeOnImplThread(const base::Closure& start_fade,
106 base::TimeDelta delay) override {} 106 base::TimeDelta delay) override {}
107 void DidActivateSyncTree() override; 107 void DidActivateSyncTree() override;
108 void DidPrepareTiles() override; 108 void DidPrepareTiles() override;
109 void DidCompletePageScaleAnimationOnImplThread() override;
109 void SetDebugState(const LayerTreeDebugState& debug_state) override {} 110 void SetDebugState(const LayerTreeDebugState& debug_state) override {}
110 111
111 void RequestNewOutputSurface(); 112 void RequestNewOutputSurface();
112 113
113 // Called by the legacy path where RenderWidget does the scheduling. 114 // Called by the legacy path where RenderWidget does the scheduling.
114 void CompositeImmediately(base::TimeTicks frame_begin_time); 115 void CompositeImmediately(base::TimeTicks frame_begin_time);
115 116
116 private: 117 private:
117 SingleThreadProxy( 118 SingleThreadProxy(
118 LayerTreeHost* layer_tree_host, 119 LayerTreeHost* layer_tree_host,
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 private: 229 private:
229 DebugScopedSetImplThread impl_thread_; 230 DebugScopedSetImplThread impl_thread_;
230 DebugScopedSetMainThreadBlocked main_thread_blocked_; 231 DebugScopedSetMainThreadBlocked main_thread_blocked_;
231 232
232 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked); 233 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked);
233 }; 234 };
234 235
235 } // namespace cc 236 } // namespace cc
236 237
237 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_ 238 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_unittest_no_message_loop.cc ('k') | cc/trees/single_thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698