OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_VIEWS_MUS_CLIPBOARD_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_CLIPBOARD_MUS_H_ |
6 #define UI_VIEWS_MUS_CLIPBOARD_MUS_H_ | 6 #define UI_VIEWS_MUS_CLIPBOARD_MUS_H_ |
7 | 7 |
8 #include "components/mus/public/interfaces/clipboard.mojom.h" | 8 #include "services/ui/public/interfaces/clipboard.mojom.h" |
9 #include "ui/base/clipboard/clipboard.h" | 9 #include "ui/base/clipboard/clipboard.h" |
10 #include "ui/views/mus/mus_export.h" | 10 #include "ui/views/mus/mus_export.h" |
11 | 11 |
12 namespace shell { | 12 namespace shell { |
13 class Connector; | 13 class Connector; |
14 } | 14 } |
15 | 15 |
16 namespace views { | 16 namespace views { |
17 | 17 |
18 // An adaptor class which translates the ui::Clipboard interface to the | 18 // An adaptor class which translates the ui::Clipboard interface to the |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 // collected all the data types, we then pass this to the mus server. | 78 // collected all the data types, we then pass this to the mus server. |
79 std::unique_ptr<mojo::Map<mojo::String, mojo::Array<uint8_t>>> | 79 std::unique_ptr<mojo::Map<mojo::String, mojo::Array<uint8_t>>> |
80 current_clipboard_; | 80 current_clipboard_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(ClipboardMus); | 82 DISALLOW_COPY_AND_ASSIGN(ClipboardMus); |
83 }; | 83 }; |
84 | 84 |
85 } // namespace views | 85 } // namespace views |
86 | 86 |
87 #endif // UI_VIEWS_MUS_CLIPBOARD_MUS_H_ | 87 #endif // UI_VIEWS_MUS_CLIPBOARD_MUS_H_ |
OLD | NEW |