Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / cc / output / latency_info_swap_promise.h
blob74810b8d1a2ed5d1e6f2779fadefa3cec4b03c8a
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
3 // found in the LICENSE file.
5 #ifndef CC_OUTPUT_LATENCY_INFO_SWAP_PROMISE_H_
6 #define CC_OUTPUT_LATENCY_INFO_SWAP_PROMISE_H_
8 #include "base/compiler_specific.h"
9 #include "cc/output/swap_promise.h"
10 #include "ui/events/latency_info.h"
12 namespace cc {
14 class CC_EXPORT LatencyInfoSwapPromise : public SwapPromise {
15 public:
16 explicit LatencyInfoSwapPromise(const ui::LatencyInfo& latency_info);
17 ~LatencyInfoSwapPromise() override;
19 void DidActivate() override {}
20 void DidSwap(CompositorFrameMetadata* metadata) override;
21 void DidNotSwap(DidNotSwapReason reason) override;
23 int64 TraceId() const override;
25 private:
26 ui::LatencyInfo latency_;
29 } // namespace cc
31 #endif // CC_OUTPUT_LATENCY_INFO_SWAP_PROMISE_H_