Index: mojo/common/url_type_converters.h |
diff --git a/mojo/common/url_type_converters.h b/mojo/common/url_type_converters.h |
deleted file mode 100644 |
index 1d334a07fe373378df3b4d3178fcf94d8253e506..0000000000000000000000000000000000000000 |
--- a/mojo/common/url_type_converters.h |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// 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 MOJO_COMMON_URL_TYPE_CONVERTERS_H_ |
-#define MOJO_COMMON_URL_TYPE_CONVERTERS_H_ |
- |
-#include "mojo/public/cpp/bindings/string.h" |
-#include "mojo/public/cpp/bindings/type_converter.h" |
- |
-class GURL; |
- |
-namespace mojo { |
- |
-template <> |
-struct TypeConverter<String, GURL> { |
- static String Convert(const GURL& input); |
-}; |
- |
-template <> |
-struct TypeConverter<GURL, String> { |
- static GURL Convert(const String& input); |
-}; |
- |
-} // namespace mojo |
- |
-#endif // MOJO_COMMON_URL_TYPE_CONVERTERS_H_ |