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

Side by Side Diff: blimp/client/compositor/blimp_compositor.h

Issue 1602343002: compositor-worker: cc->blink mutation plumbing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor-worker-ian-patch
Patch Set: Fix test and rebase Created 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_ 5 #ifndef BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_
6 #define BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_ 6 #define BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 void WillBeginMainFrame() override; 94 void WillBeginMainFrame() override;
95 void DidBeginMainFrame() override; 95 void DidBeginMainFrame() override;
96 void BeginMainFrame(const cc::BeginFrameArgs& args) override; 96 void BeginMainFrame(const cc::BeginFrameArgs& args) override;
97 void BeginMainFrameNotExpectedSoon() override; 97 void BeginMainFrameNotExpectedSoon() override;
98 void UpdateLayerTreeHost() override; 98 void UpdateLayerTreeHost() override;
99 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta, 99 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta,
100 const gfx::Vector2dF& outer_delta, 100 const gfx::Vector2dF& outer_delta,
101 const gfx::Vector2dF& elastic_overscroll_delta, 101 const gfx::Vector2dF& elastic_overscroll_delta,
102 float page_scale, 102 float page_scale,
103 float top_controls_delta) override; 103 float top_controls_delta) override;
104 void ApplyMutations(const LayerTreeMutations& mutations) override;
104 void RequestNewOutputSurface() override; 105 void RequestNewOutputSurface() override;
105 void DidInitializeOutputSurface() override; 106 void DidInitializeOutputSurface() override;
106 void DidFailToInitializeOutputSurface() override; 107 void DidFailToInitializeOutputSurface() override;
107 void WillCommit() override; 108 void WillCommit() override;
108 void DidCommit() override; 109 void DidCommit() override;
109 void DidCommitAndDrawFrame() override; 110 void DidCommitAndDrawFrame() override;
110 void DidCompleteSwapBuffers() override; 111 void DidCompleteSwapBuffers() override;
111 void DidCompletePageScaleAnimation() override; 112 void DidCompletePageScaleAnimation() override;
112 void RecordFrameTimingEvents( 113 void RecordFrameTimingEvents(
113 scoped_ptr<cc::FrameTimingTracker::CompositeTimingSet> composite_events, 114 scoped_ptr<cc::FrameTimingTracker::CompositeTimingSet> composite_events,
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 // widget. 177 // widget.
177 scoped_ptr<BlimpInputManager> input_manager_; 178 scoped_ptr<BlimpInputManager> input_manager_;
178 179
179 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); 180 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor);
180 }; 181 };
181 182
182 } // namespace client 183 } // namespace client
183 } // namespace blimp 184 } // namespace blimp
184 185
185 #endif // BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_ 186 #endif // BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_
OLDNEW
« no previous file with comments | « no previous file | blimp/client/compositor/blimp_compositor.cc » ('j') | third_party/WebKit/Source/core/dom/Element.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698