Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: chrome/browser/chromeos/arc/clipboard/arc_clipboard_manager.h

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to catch arc++ notification cl Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698