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

Unified Diff: components/version_ui/version.mojom

Issue 1486403002: Mojo-ifying chrome://version. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change slashes Created 4 years, 5 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
Index: components/version_ui/version.mojom
diff --git a/components/version_ui/version.mojom b/components/version_ui/version.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..8f4798637c3ddf4d764dbc362ce879882de38051
--- /dev/null
+++ b/components/version_ui/version.mojom
@@ -0,0 +1,16 @@
+// 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.
+
+module mojom;
+
+interface VersionPageHandler {
+ GetFilePaths() => (string execPath, string profilePath);
+ GetFlashVersion() => (string flashVersion);
+ GetVariations() => (array<string> variations);
+
+// if defined(OS_CHROMEOS)
+ GetOsVersion() => (string osVersion);
+ GetArcVersion() => (string arcVersion);
+// endif // defined(OS_CHROMEOS)
+};
« no previous file with comments | « components/version_ui/resources/about_version_ios.js ('k') | components/version_ui/version_handler_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698