Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
|
Eugene But (OOO till 7-30)
2016/06/02 22:23:12
iOS can not use chrome. So we'll have to put these
| |
| 5 module mojom; | |
| 6 | |
| 7 interface VersionPageHandler { | |
| 8 GetFilePaths() => (string execPath, string profilePath); | |
| 9 GetFlashVersion() => (string flashVersion); | |
| 10 GetVariations() => (array<string> variations); | |
| 11 | |
| 12 // if defined(OS_CHROMEOS) | |
| 13 GetOsVersion() => (string osVersion); | |
| 14 GetArcVersion() => (string arcVersion); | |
| 15 // endif // defined(OS_CHROMEOS) | |
| 16 }; | |
| OLD | NEW |