OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 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 #ifndef EXTENSIONS_RENDERER_BINDING_API_BINDING_UTIL_H_ |
| 6 #define EXTENSIONS_RENDERER_BINDING_API_BINDING_UTIL_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace extensions { |
| 11 namespace binding { |
| 12 |
| 13 // Returns the string version of the current platform, one of "chromeos", |
| 14 // "linux", "win", or "mac". |
| 15 std::string GetPlatformString(); |
| 16 |
| 17 } // namespace binding |
| 18 } // namespace extensions |
| 19 |
| 20 #endif // EXTENSIONS_RENDERER_BINDING_API_BINDING_UTIL_H_ |
OLD | NEW |