Chromium Code Reviews| Index: chrome/browser/chromeos/arc/clipboard/arc_clipboard_manager.h |
| diff --git a/chrome/browser/chromeos/arc/clipboard/arc_clipboard_manager.h b/chrome/browser/chromeos/arc/clipboard/arc_clipboard_manager.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7d9386db5038c72bce1b0e2645457115ea135dd5 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/arc/clipboard/arc_clipboard_manager.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ |
| + |
| +#include <string> |
| + |
| +#include "components/arc/arc_bridge_service.h" |
| + |
| +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
|
| + |
| +class ArcClipboardManager : public arc::ArcBridgeService::Observer, |
| + public arc::ArcBridgeService::ClipboardObserver { |
| + public: |
| + ArcClipboardManager(); |
| + ~ArcClipboardManager() override; |
| + |
| + // arc::ArcBridgeService::Observer implementation: |
| + void OnSetClipboardContent(const arc::ClipboardData& data) override; |
| + void OnGetClipboardContent() override; |
| +}; |
|
jochen (gone - plz use gerrit)
2015/12/07 15:45:09
private: DISALLOW_COPY_AND_ASSIGN
|
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_ARC_CLIPBOARD_ARC_CLIPBOARD_MANAGER_H_ |