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

Side by Side Diff: services/device/public/interfaces/sensor_provider.mojom

Issue 2865263002: Move //device/generic_sensor to be part of the internal implementation of the Device Service. (Closed)
Patch Set: code rebase Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 module device.mojom; 5 module device.mojom;
6 6
7 import "sensor.mojom"; 7 import "sensor.mojom";
8 8
9 struct SensorInitParams { 9 struct SensorInitParams {
10 // The shared memory handle used to fetch the sensor reading. 10 // The shared memory handle used to fetch the sensor reading.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 // 42 //
43 // |init_params| on success will contain the SensorInitParams describing the 43 // |init_params| on success will contain the SensorInitParams describing the
44 // sensor details, 44 // sensor details,
45 // contains null on failure. 45 // contains null on failure.
46 // |client_request| on success contains a request to be bound by the client, 46 // |client_request| on success contains a request to be bound by the client,
47 // contains null on failure. 47 // contains null on failure.
48 GetSensor(SensorType type, Sensor& sensor_request) => ( 48 GetSensor(SensorType type, Sensor& sensor_request) => (
49 SensorInitParams? init_params, 49 SensorInitParams? init_params,
50 SensorClient&? client_request); 50 SensorClient&? client_request);
51 }; 51 };
OLDNEW
« no previous file with comments | « services/device/public/interfaces/sensor.typemap ('k') | services/device/public/interfaces/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698