[Chromoting] Enable support for mouselock in the webapp.
[chromium-blink-merge.git] / url / origin.cc
blobeb2cf141126bd0c83d70f461907483128354310b
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.
5 #include "url/origin.h"
7 #include "base/strings/string_util.h"
9 namespace url {
11 Origin::Origin() : string_("null") {}
13 Origin::Origin(const std::string& origin) : string_(origin) {
14 DCHECK(origin == "null" || MatchPattern(origin, "?*://?*"));
15 DCHECK_GT(origin.size(), 0u);
16 DCHECK_NE(origin[origin.size() - 1], '/');
19 } // namespace url