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

Side by Side Diff: components/content_settings/core/common/permission_request_id.cc

Issue 1166603002: Move PermissionRequestID to chrome/browser/permissions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission_rfh
Patch Set: fix build Created 5 years, 6 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 | « components/content_settings/core/common/permission_request_id.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « components/content_settings/core/common/permission_request_id.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698