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

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

Issue 942533003: Enable <webview>.executeScript outside of Apps and Extensions [1] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@decouple_brower_isolated_world_routingid_user_script_UserScriptSet_non_hostset_2
Patch Set: Add a test. 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
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 #ifndef EXTENSIONS_COMMON_HOST_ID_H_ 5 #ifndef EXTENSIONS_COMMON_HOST_ID_H_
6 #define EXTENSIONS_COMMON_HOST_ID_H_ 6 #define EXTENSIONS_COMMON_HOST_ID_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 // IDs of hosts who own user scripts. 10 // IDs of hosts who own user scripts.
11 // A HostID is immutable after creation. 11 // A HostID is immutable after creation.
12 struct HostID { 12 struct HostID {
13 enum HostType { EXTENSIONS, WEBUI }; 13 enum HostType { EXTENSIONS, WEBUI, HOST_TYPE_LAST = WEBUI };
14 14
15 HostID(); 15 HostID();
16 HostID(HostType type, const std::string& id); 16 HostID(HostType type, const std::string& id);
17 HostID(const HostID& host_id); 17 HostID(const HostID& host_id);
18 ~HostID(); 18 ~HostID();
19 19
20 bool operator<(const HostID& host_id) const; 20 bool operator<(const HostID& host_id) const;
21 bool operator==(const HostID& host_id) const; 21 bool operator==(const HostID& host_id) const;
22 22
23 HostType type() const { return type_; } 23 HostType type() const { return type_; }
24 const std::string& id() const { return id_; } 24 const std::string& id() const { return id_; }
25 25
26 private: 26 private:
27 // The type of the host. 27 // The type of the host.
28 HostType type_; 28 HostType type_;
29 29
30 // Similar to extension_id, host_id is a unique indentifier for a host, 30 // Similar to extension_id, host_id is a unique indentifier for a host,
31 // e.g., an Extension or WebUI. 31 // e.g., an Extension or WebUI.
32 std::string id_; 32 std::string id_;
33 }; 33 };
34 34
35 #endif // EXTENSIONS_COMMON_HOST_ID_H_ 35 #endif // EXTENSIONS_COMMON_HOST_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698