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

Unified Diff: mojo/services/device_info/public/interfaces/device_info.mojom

Issue 1388413005: Move //mojo/services/X/public/... to //mojo/services/X/... (part 1). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/device_info/public/interfaces/BUILD.gn ('k') | mojo/services/files/c/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/device_info/public/interfaces/device_info.mojom
diff --git a/mojo/services/device_info/public/interfaces/device_info.mojom b/mojo/services/device_info/public/interfaces/device_info.mojom
deleted file mode 100644
index d31118d666326659b3a657dd3989f8797bc7ce0b..0000000000000000000000000000000000000000
--- a/mojo/services/device_info/public/interfaces/device_info.mojom
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[DartPackage="mojo_services"]
-module mojo;
-
-// A service to expose device specific information.
-// All operations are stateless.
-interface DeviceInfo {
- // The device type this service is running on. It can be a function of things
- // like whether there's an attached screen and its size, etc.
- enum DeviceType {
- UNKNOWN,
- HEADLESS, // No attached display. Useful in tests.
- WATCH, // Display smaller than 3.5".
- PHONE, // Display smaller than 6.5" and larger than 3.5".
- TABLET, // Display smaller than 10.5" and larger than 6.5".
-
- // Anything with a display larger than 10.5" with an attached keyboard.
- DESKTOP,
-
- // Anything with a display larger than 10.5" without an attached keyboard.
- TV,
- };
- GetDeviceType() => (DeviceType device_type);
-};
« no previous file with comments | « mojo/services/device_info/public/interfaces/BUILD.gn ('k') | mojo/services/files/c/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698