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

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

Issue 982113002: Fix a bug in UserScriptLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 9 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
« no previous file with comments | « extensions/browser/user_script_loader.cc ('k') | extensions/common/user_script.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "extensions/common/host_id.h" 5 #include "extensions/common/host_id.h"
6 6
7 HostID::HostID() { 7 HostID::HostID()
8 : type_(HostType::EXTENSIONS) {
8 } 9 }
9 10
10 HostID::HostID(HostType type, const std::string& id) 11 HostID::HostID(HostType type, const std::string& id)
11 : type_(type), id_(id) { 12 : type_(type), id_(id) {
12 } 13 }
13 14
14 HostID::HostID(const HostID& host_id) 15 HostID::HostID(const HostID& host_id)
15 : type_(host_id.type()), 16 : type_(host_id.type()),
16 id_(host_id.id()) { 17 id_(host_id.id()) {
17 } 18 }
18 19
19 HostID::~HostID() { 20 HostID::~HostID() {
20 } 21 }
21 22
22 bool HostID::operator<(const HostID& host_id) const { 23 bool HostID::operator<(const HostID& host_id) const {
23 if (type_ != host_id.type()) 24 if (type_ != host_id.type())
24 return type_ < host_id.type(); 25 return type_ < host_id.type();
25 else if (id_ != host_id.id()) 26 else if (id_ != host_id.id())
26 return id_ < host_id.id(); 27 return id_ < host_id.id();
27 return false; 28 return false;
28 } 29 }
29 30
30 bool HostID::operator==(const HostID& host_id) const { 31 bool HostID::operator==(const HostID& host_id) const {
31 return type_ == host_id.type() && id_ == host_id.id(); 32 return type_ == host_id.type() && id_ == host_id.id();
32 } 33 }
OLDNEW
« no previous file with comments | « extensions/browser/user_script_loader.cc ('k') | extensions/common/user_script.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698