OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_BINDER_UTIL_H_ | 5 #ifndef CHROMEOS_BINDER_UTIL_H_ |
6 #define CHROMEOS_BINDER_UTIL_H_ | 6 #define CHROMEOS_BINDER_UTIL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "chromeos/chromeos_export.h" | 8 #include "chromeos/chromeos_export.h" |
10 | 9 |
11 namespace binder { | 10 namespace binder { |
12 | 11 |
13 // Returns the string representation of the given binder command or "UNKNOWN" | 12 // Returns the string representation of the given binder command or "UNKNOWN" |
14 // if command is unknown, never returns null. | 13 // if command is unknown, never returns null. |
15 CHROMEOS_EXPORT const char* CommandToString(uint32 command); | 14 CHROMEOS_EXPORT const char* CommandToString(uint32_t command); |
16 | 15 |
17 } // namespace binder | 16 } // namespace binder |
18 | 17 |
19 #endif // CHROMEOS_BINDER_UTIL_H_ | 18 #endif // CHROMEOS_BINDER_UTIL_H_ |
OLD | NEW |