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

Side by Side Diff: mojo/common/common_type_converters.h

Issue 562483002: mojo: Create a basic clipboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes to the gn files. Created 6 years, 3 months 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
« no previous file with comments | « mojo/BUILD.gn ('k') | mojo/common/common_type_converters.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_ 5 #ifndef MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_
6 #define MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_ 6 #define MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_
7 7
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "base/strings/string_piece.h" 9 #include "base/strings/string_piece.h"
10 #include "mojo/common/mojo_common_export.h" 10 #include "mojo/common/mojo_common_export.h"
11 #include "mojo/public/cpp/bindings/array.h"
11 #include "mojo/public/cpp/bindings/string.h" 12 #include "mojo/public/cpp/bindings/string.h"
12 #include "mojo/public/cpp/bindings/type_converter.h" 13 #include "mojo/public/cpp/bindings/type_converter.h"
13 14
14 class GURL; 15 class GURL;
15 16
16 namespace mojo { 17 namespace mojo {
17 18
18 template <> 19 template <>
19 struct MOJO_COMMON_EXPORT TypeConverter<String, base::StringPiece> { 20 struct MOJO_COMMON_EXPORT TypeConverter<String, base::StringPiece> {
20 static String Convert(const base::StringPiece& input); 21 static String Convert(const base::StringPiece& input);
(...skipping 17 matching lines...) Expand all
38 template <> 39 template <>
39 struct MOJO_COMMON_EXPORT TypeConverter<String, GURL> { 40 struct MOJO_COMMON_EXPORT TypeConverter<String, GURL> {
40 static String Convert(const GURL& input); 41 static String Convert(const GURL& input);
41 }; 42 };
42 43
43 template <> 44 template <>
44 struct MOJO_COMMON_EXPORT TypeConverter<GURL, String> { 45 struct MOJO_COMMON_EXPORT TypeConverter<GURL, String> {
45 static GURL Convert(const String& input); 46 static GURL Convert(const String& input);
46 }; 47 };
47 48
49 // TODO(erg): In the very long term, we will want to remove conversion between
50 // std::strings and arrays of unsigned bytes. However, there is too much code
51 // across chrome which uses std::string as a bag of bytes that we probably
52 // don't want to roll this function at each callsite.
53 template <>
54 struct MOJO_COMMON_EXPORT TypeConverter<std::string, Array<uint8_t> > {
55 static std::string Convert(const Array<uint8_t>& input);
56 };
57
58 template <>
59 struct MOJO_COMMON_EXPORT TypeConverter<Array<uint8_t>, std::string> {
60 static Array<uint8_t> Convert(const std::string& input);
61 };
62
48 } // namespace mojo 63 } // namespace mojo
49 64
50 #endif // MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_ 65 #endif // MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_
OLDNEW
« no previous file with comments | « mojo/BUILD.gn ('k') | mojo/common/common_type_converters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698