OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 #include "content/common/serialized_origin.h" |
| 6 |
| 7 #include <string> |
| 8 |
| 9 #include "third_party/WebKit/public/platform/WebString.h" |
| 10 |
| 11 namespace content { |
| 12 |
| 13 SerializedOrigin::SerializedOrigin() {} |
| 14 |
| 15 SerializedOrigin::SerializedOrigin(const std::string& origin) |
| 16 : string(origin) {} |
| 17 |
| 18 SerializedOrigin::SerializedOrigin(const blink::WebString& origin) |
| 19 : string(origin.utf8()) {} |
| 20 |
| 21 } // namespace content |
OLD | NEW |