blob: bffe0ce4c60cff37273996543724caa529f120f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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.
#include "mojo/shell/identity.h"
#include "mojo/shell/query_util.h"
namespace mojo {
namespace shell {
Identity::Identity(const GURL& url, const std::string& qualifier)
: url(GetBaseURLAndQuery(url, nullptr)),
qualifier(qualifier.empty() ? url.spec() : qualifier) {
}
// explicit
Identity::Identity(const GURL& base_url)
: url(GetBaseURLAndQuery(base_url, nullptr)), qualifier(url.spec()) {
}
bool Identity::operator<(const Identity& other) const {
if (url != other.url)
return url < other.url;
return qualifier < other.qualifier;
}
} // namespace shell
} // namespace mojo
|