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

Side by Side Diff: extensions/common/permissions/media_galleries_permission_data.cc

Issue 201203006: Move basic API permissions code out of //chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move moar things Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "chrome/common/extensions/permissions/media_galleries_permission_data.h " 5 #include "extensions/common/permissions/media_galleries_permission_data.h"
6 6
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/common/extensions/permissions/media_galleries_permission.h" 9 #include "extensions/common/permissions/media_galleries_permission.h"
10 10
11 namespace extensions { 11 namespace extensions {
12 12
13 MediaGalleriesPermissionData::MediaGalleriesPermissionData() { 13 MediaGalleriesPermissionData::MediaGalleriesPermissionData() {
14 } 14 }
15 15
16 bool MediaGalleriesPermissionData::Check( 16 bool MediaGalleriesPermissionData::Check(
17 const APIPermission::CheckParam* param) const { 17 const APIPermission::CheckParam* param) const {
18 if (!param) 18 if (!param)
19 return false; 19 return false;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const MediaGalleriesPermissionData& rhs) const { 53 const MediaGalleriesPermissionData& rhs) const {
54 return permission_ < rhs.permission_; 54 return permission_ < rhs.permission_;
55 } 55 }
56 56
57 bool MediaGalleriesPermissionData::operator==( 57 bool MediaGalleriesPermissionData::operator==(
58 const MediaGalleriesPermissionData& rhs) const { 58 const MediaGalleriesPermissionData& rhs) const {
59 return permission_ == rhs.permission_; 59 return permission_ == rhs.permission_;
60 } 60 }
61 61
62 } // namespace extensions 62 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698