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

Side by Side Diff: device/hid/hid_service_unittest.cc

Issue 419713002: Support permission_broker for chrome.hid devices. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix hid in app_shell after its move to //extensions Created 6 years, 4 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/hid/hid_service_mac.cc ('k') | extensions/browser/api/extensions_api_client.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <vector> 5 #include <vector>
6 6
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "device/hid/hid_service.h" 8 #include "device/hid/hid_service.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace device { 11 namespace device {
12 12
13 TEST(HidServiceTest, Create) { 13 TEST(HidServiceTest, Create) {
14 base::MessageLoopForIO message_loop; 14 base::MessageLoopForIO message_loop;
15 HidService* service = HidService::GetInstance(); 15 HidService* service = HidService::Create(message_loop.message_loop_proxy());
16 ASSERT_TRUE(service); 16 ASSERT_TRUE(service);
17 17
18 std::vector<HidDeviceInfo> devices; 18 std::vector<HidDeviceInfo> devices;
19 service->GetDevices(&devices); 19 service->GetDevices(&devices);
20 for (std::vector<HidDeviceInfo>::iterator it = devices.begin(); 20 for (std::vector<HidDeviceInfo>::iterator it = devices.begin();
21 it != devices.end(); 21 it != devices.end();
22 ++it) { 22 ++it) {
23 ASSERT_TRUE(it->device_id != kInvalidHidDeviceId); 23 ASSERT_TRUE(it->device_id != kInvalidHidDeviceId);
24 } 24 }
25 } 25 }
26 26
27 } // namespace device 27 } // namespace device
OLDNEW
« no previous file with comments | « device/hid/hid_service_mac.cc ('k') | extensions/browser/api/extensions_api_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698