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 "url/origin.h" | |
6 | |
7 #include "base/strings/string_util.h" | |
8 | |
9 namespace url { | |
10 | |
11 Origin::Origin() {} | |
12 | |
13 Origin::Origin(const std::string& origin) : string_(origin) { | |
14 DCHECK(origin == "null" || MatchPattern(origin, "?*://?*")); | |
brettw
2014/03/12 05:34:54
Seems to me that this should also accept an empty
yhirano
2014/03/12 05:48:20
Thanks, done.
| |
15 DCHECK_NE(origin[origin.size() - 1], '/'); | |
brettw
2014/03/12 05:34:54
...and this shouldn't crash on empty string.
yhirano
2014/03/12 05:48:20
Done.
| |
16 } | |
17 | |
18 } // namespace url | |
OLD | NEW |