Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(501)

Side by Side Diff: extensions/common/host_id.cc

Issue 885493007: Refactoring: de-couple Extensions from "script injection System" [render side] : 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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 "extensions/common/host_id.h"
6
7 HostID::HostID(HostType type, const std::string& id)
8 : type_(type), id_(id) {
9 }
10
11 HostID::HostID(const HostID& host_id)
12 : type_(host_id.type()),
13 id_(host_id.id()) {
14 }
15
16 bool HostID::operator<(const HostID& host_id) const {
17 if (type_ != host_id.type())
18 return type_ < host_id.type();
19 else if (id_ != host_id.id())
20 return id_ < host_id.id();
21 return false;
22 }
23
24 bool HostID::operator==(const HostID& host_id) const {
25 return type_ == host_id.type() && id_ == host_id.id();
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698