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

Unified Diff: components/content_settings/core/common/permission_request_id.h

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 side-by-side diff with in-line comments
Download patch
Index: components/content_settings/core/common/permission_request_id.h
diff --git a/components/content_settings/core/common/permission_request_id.h b/components/content_settings/core/common/permission_request_id.h
deleted file mode 100644
index 6b798d496fcf628f2fe1dc49b975cb9eccd02e38..0000000000000000000000000000000000000000
--- a/components/content_settings/core/common/permission_request_id.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_CONTENT_SETTINGS_CORE_COMMON_PERMISSION_REQUEST_ID_H_
-#define COMPONENTS_CONTENT_SETTINGS_CORE_COMMON_PERMISSION_REQUEST_ID_H_
-
-#include <string>
-
-#include "url/gurl.h"
-
-// Uniquely identifies a particular permission request.
-class PermissionRequestID {
- public:
- PermissionRequestID(int render_process_id,
- int render_frame_id,
- int bridge_id,
- const GURL& origin);
- ~PermissionRequestID();
-
- int render_process_id() const { return render_process_id_; }
- int render_frame_id() const { return render_frame_id_; }
- int bridge_id() const { return bridge_id_; }
- GURL origin() const { return origin_; }
-
- bool Equals(const PermissionRequestID& other) const;
- std::string ToString() const;
-
- private:
- int render_process_id_;
- int render_frame_id_;
- // Id unique to this instance.
- int bridge_id_;
- // Needed for permission checks that are based on origin.
- // If you don't use origin to check permission request, pass an empty GURL.
- GURL origin_;
-
- // Purposefully do not disable copying, as this is stored in STL containers.
-};
-
-#endif // COMPONENTS_CONTENT_SETTINGS_CORE_COMMON_PERMISSION_REQUEST_ID_H_
« no previous file with comments | « components/content_settings/core/common/BUILD.gn ('k') | components/content_settings/core/common/permission_request_id.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698