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

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

Issue 1962393004: Added a debug info UI for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ 5 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_
6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ 6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 // To be notified of any incoming compositor protos that are specifically sent 198 // To be notified of any incoming compositor protos that are specifically sent
199 // to |render_widget_id_|. 199 // to |render_widget_id_|.
200 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; 200 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_;
201 201
202 // Handles input events for the current render widget. The lifetime of the 202 // Handles input events for the current render widget. The lifetime of the
203 // input manager is tied to the lifetime of the |host_| which owns the 203 // input manager is tied to the lifetime of the |host_| which owns the
204 // cc::InputHandler. The input events are forwarded to this input handler by 204 // cc::InputHandler. The input events are forwarded to this input handler by
205 // the manager to be handled by the client compositor for the current render 205 // the manager to be handled by the client compositor for the current render
206 // widget. 206 // widget.
207 std::unique_ptr<BlimpInputManager> input_manager_; 207 std::unique_ptr<BlimpInputManager> input_manager_;
208 208 int commit_count_ = 0;
Kevin M 2016/05/10 23:54:24 Add a comment with a similar level of detail as th
shaktisahu 2016/05/16 05:41:38 Field removed.
209 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); 209 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor);
210 }; 210 };
211 211
212 } // namespace client 212 } // namespace client
213 } // namespace blimp 213 } // namespace blimp
214 214
215 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ 215 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698