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

Side by Side Diff: device/sensors/data_fetcher_shared_memory_chromeos.cc

Issue 2646093002: Move //content/browser/device_sensor/ into device/sensors (Closed)
Patch Set: gn format & code rebase Created 3 years, 10 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "content/browser/device_sensors/data_fetcher_shared_memory.h" 5 #include "device/sensors/data_fetcher_shared_memory.h"
6 6
7 #include "content/browser/device_sensors/sensor_manager_chromeos.h" 7 #include "device/sensors/sensor_manager_chromeos.h"
8 8
9 namespace content { 9 namespace device {
10 10
11 DataFetcherSharedMemory::DataFetcherSharedMemory() { 11 DataFetcherSharedMemory::DataFetcherSharedMemory() {
12 } 12 }
13 13
14 DataFetcherSharedMemory::~DataFetcherSharedMemory() { 14 DataFetcherSharedMemory::~DataFetcherSharedMemory() {
15 } 15 }
16 16
17 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) { 17 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) {
18 DCHECK(buffer); 18 DCHECK(buffer);
19 if (!sensor_manager_) 19 if (!sensor_manager_)
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 return true; 63 return true;
64 case CONSUMER_TYPE_LIGHT: 64 case CONSUMER_TYPE_LIGHT:
65 NOTIMPLEMENTED(); 65 NOTIMPLEMENTED();
66 return false; 66 return false;
67 } 67 }
68 NOTREACHED(); 68 NOTREACHED();
69 return false; 69 return false;
70 } 70 }
71 71
72 } // namespace content 72 } // namespace device
OLDNEW
« no previous file with comments | « device/sensors/data_fetcher_shared_memory_base_unittest.cc ('k') | device/sensors/data_fetcher_shared_memory_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698