| 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 |
| 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 |