OLD | NEW |
| (Empty) |
1 // Copyright 2013 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 "components/content_settings/core/common/permission_request_id.h" | |
6 | |
7 #include "base/strings/stringprintf.h" | |
8 | |
9 PermissionRequestID::PermissionRequestID(int render_process_id, | |
10 int render_frame_id, | |
11 int bridge_id, | |
12 const GURL& origin) | |
13 : render_process_id_(render_process_id), | |
14 render_frame_id_(render_frame_id), | |
15 bridge_id_(bridge_id), | |
16 origin_(origin) { | |
17 } | |
18 | |
19 PermissionRequestID::~PermissionRequestID() { | |
20 } | |
21 | |
22 bool PermissionRequestID::Equals(const PermissionRequestID& other) const { | |
23 return render_process_id_ == other.render_process_id_ && | |
24 render_frame_id_ == other.render_frame_id_ && | |
25 bridge_id_ == other.bridge_id_ && | |
26 origin_ == other.origin_; | |
27 } | |
28 | |
29 std::string PermissionRequestID::ToString() const { | |
30 return base::StringPrintf("%d,%d,%d,%s", | |
31 render_process_id_, | |
32 render_frame_id_, | |
33 bridge_id_, | |
34 origin_.spec().c_str()); | |
35 } | |
OLD | NEW |