ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chrome / app / kasko_client.h
blob70fa08b92fff8d7f26db0ec77109e24dc6a48976
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
3 // found in the LICENSE file.
5 #ifndef CHROME_APP_KASKO_CLIENT_H_
6 #define CHROME_APP_KASKO_CLIENT_H_
8 #if defined(SYZYASAN)
10 #include "base/macros.h"
12 class ChromeWatcherClient;
14 // Manages the lifetime of Chrome's Kasko client, which permits crash reporting
15 // via Kasko. Only a single instance of this class may be instantiated at any
16 // time.
17 class KaskoClient {
18 public:
19 // Initializes a Kasko client that will communicate with the Kasko reporter
20 // hosted by the Chrome watcher process managed by |chrome_watcher_client|.
21 explicit KaskoClient(ChromeWatcherClient* chrome_watcher_client);
22 ~KaskoClient();
24 private:
25 DISALLOW_COPY_AND_ASSIGN(KaskoClient);
28 #endif // SYZYASAN
30 #endif // CHROME_APP_KASKO_CLIENT_H_