Chromium Code Reviews| Index: chrome/browser/ui/webui/version.mojom |
| diff --git a/chrome/browser/ui/webui/version.mojom b/chrome/browser/ui/webui/version.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8f4798637c3ddf4d764dbc362ce879882de38051 |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/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. |
| + |
|
Eugene But (OOO till 7-30)
2016/06/02 22:23:12
iOS can not use chrome. So we'll have to put these
|
| +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) |
| +}; |