blob: a43d18b5fe49a7b8c6a7f8a3fdb8eb6655478224 [file] [log] [blame]
// Copyright 2013 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 MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_
#define MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_
#include "base/strings/string16.h"
#include "base/strings/string_piece.h"
#include "mojo/common/mojo_common_export.h"
#include "mojo/public/cpp/bindings/array.h"
#include "mojo/public/cpp/bindings/type_converter.h"
namespace mojo {
template <>
class MOJO_COMMON_EXPORT TypeConverter<String, base::StringPiece> {
public:
static String ConvertFrom(const base::StringPiece& input, Buffer* buf);
static base::StringPiece ConvertTo(const String& input);
MOJO_ALLOW_IMPLICIT_TYPE_CONVERSION();
};
template <>
class MOJO_COMMON_EXPORT TypeConverter<String, base::string16> {
public:
static String ConvertFrom(const base::string16& input, Buffer* buf);
static base::string16 ConvertTo(const String& input);
MOJO_ALLOW_IMPLICIT_TYPE_CONVERSION();
};
} // namespace mojo
#endif // MOJO_COMMON_COMMON_TYPE_CONVERTERS_H_