| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/usb_device_permission_data.h" | 5 #include "extensions/common/permissions/usb_device_permission_data.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
| 13 #include "base/strings/string_split.h" | 13 #include "base/strings/string_split.h" |
| 14 #include "base/values.h" | 14 #include "base/values.h" |
| 15 #include "chrome/common/extensions/permissions/usb_device_permission.h" | |
| 16 #include "extensions/common/permissions/api_permission.h" | 15 #include "extensions/common/permissions/api_permission.h" |
| 16 #include "extensions/common/permissions/usb_device_permission.h" |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 const char* kProductIdKey = "productId"; | 20 const char* kProductIdKey = "productId"; |
| 21 const char* kVendorIdKey = "vendorId"; | 21 const char* kVendorIdKey = "vendorId"; |
| 22 const char* kInterfaceIdKey = "interfaceId"; | 22 const char* kInterfaceIdKey = "interfaceId"; |
| 23 | 23 |
| 24 } // namespace | 24 } // namespace |
| 25 | 25 |
| 26 namespace extensions { | 26 namespace extensions { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } | 100 } |
| 101 | 101 |
| 102 bool UsbDevicePermissionData::operator==( | 102 bool UsbDevicePermissionData::operator==( |
| 103 const UsbDevicePermissionData& rhs) const { | 103 const UsbDevicePermissionData& rhs) const { |
| 104 return vendor_id_ == rhs.vendor_id_ && | 104 return vendor_id_ == rhs.vendor_id_ && |
| 105 product_id_ == rhs.product_id_ && | 105 product_id_ == rhs.product_id_ && |
| 106 interface_id_ == rhs.interface_id_; | 106 interface_id_ == rhs.interface_id_; |
| 107 } | 107 } |
| 108 | 108 |
| 109 } // namespace extensions | 109 } // namespace extensions |
| OLD | NEW |