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

Side by Side Diff: device/usb/usb_ids.h

Issue 16231013: device: Restructure the layout of gyp files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: doh forgot to rename the principal - the target Created 7 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 | Annotate | Revision Log
« no previous file with comments | « device/usb/usb.gyp ('k') | tools/gritsettings/resource_ids » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef DEVICE_USB_USB_IDS_H_ 5 #ifndef DEVICE_USB_USB_IDS_H_
6 #define DEVICE_USB_USB_IDS_H_ 6 #define DEVICE_USB_USB_IDS_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 27 matching lines...) Expand all
38 static const char* GetProductName(uint16_t vendor_id, uint16_t product_id); 38 static const char* GetProductName(uint16_t vendor_id, uint16_t product_id);
39 39
40 private: 40 private:
41 UsbIds(); 41 UsbIds();
42 ~UsbIds(); 42 ~UsbIds();
43 43
44 // Finds the static UsbVendor associated with |vendor_id|. Returns NULL if no 44 // Finds the static UsbVendor associated with |vendor_id|. Returns NULL if no
45 // such vendor exists. 45 // such vendor exists.
46 static const UsbVendor* FindVendor(uint16_t vendor_id); 46 static const UsbVendor* FindVendor(uint16_t vendor_id);
47 47
48 // These fields are defined in a generated file. See device/device.gyp for 48 // These fields are defined in a generated file. See device/usb/usb.gyp for
49 // more information on how they are generated. 49 // more information on how they are generated.
50 static const size_t vendor_size_; 50 static const size_t vendor_size_;
51 static const UsbVendor vendors_[]; 51 static const UsbVendor vendors_[];
52 52
53 DISALLOW_COPY_AND_ASSIGN(UsbIds); 53 DISALLOW_COPY_AND_ASSIGN(UsbIds);
54 }; 54 };
55 55
56 } // namespace device 56 } // namespace device
57 57
58 #endif // DEVICE_USB_USB_IDS_H_ 58 #endif // DEVICE_USB_USB_IDS_H_
OLDNEW
« no previous file with comments | « device/usb/usb.gyp ('k') | tools/gritsettings/resource_ids » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698