OLD | NEW |
---|---|
(Empty) | |
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. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "components/arc/arc_bridge_service.h" | |
11 | |
12 namespace chromeos { | |
elijahtaylor1
2015/12/04 20:36:51
other people may have opinions about this, maybe i
jochen (gone - plz use gerrit)
2015/12/07 15:45:09
the arc namespace should only be used by the arc c
| |
13 | |
14 class ArcClipboardManager : public arc::ArcBridgeService::Observer, | |
15 public arc::ArcBridgeService::ClipboardObserver { | |
16 public: | |
17 ArcClipboardManager(); | |
18 ~ArcClipboardManager() override; | |
19 | |
20 // arc::ArcBridgeService::Observer implementation: | |
21 void OnSetClipboardContent(const arc::ClipboardData& data) override; | |
22 void OnGetClipboardContent() override; | |
23 }; | |
jochen (gone - plz use gerrit)
2015/12/07 15:45:09
private: DISALLOW_COPY_AND_ASSIGN
| |
24 | |
25 } // namespace chromeos | |
26 | |
27 #endif // CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ | |
OLD | NEW |