Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / ppapi / cpp / private / input_event_private.h
blob3fb4e3a40142a0be3a389a7fecd193e83a6b7db8
1 // Copyright 2014 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 PPAPI_CPP_PRIVATE_INPUT_EVENT_PRIVATE_H_
6 #define PPAPI_CPP_PRIVATE_INPUT_EVENT_PRIVATE_H_
8 #include "ppapi/c/private/ppb_input_event_private.h"
9 #include "ppapi/cpp/input_event.h"
11 namespace pp {
13 class InputEventPrivate : public InputEvent {
14 public:
15 InputEventPrivate();
16 explicit InputEventPrivate(const InputEvent& event);
18 bool TraceInputLatency(bool has_damage);
20 /// See PPB_InputEventPrivate.StartTrackingLatency.
21 static void StartTrackingLatency (const InstanceHandle& instance);
27 #endif // PPAPI_CPP_PRIVATE_INPUT_EVENT_PRIVATE_H_