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 COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ | 5 #ifndef COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ |
6 #define COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ | 6 #define COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ |
7 | 7 |
8 namespace net_log { | 8 namespace net_log { |
9 | 9 |
10 // Resource paths. | 10 // Resource paths. |
11 // Must match the resource file names. | 11 // Must match the resource file names. |
12 extern const char kNetExportUIJS[]; | 12 extern const char kNetExportUIJS[]; |
13 | 13 |
14 // Message handlers. | 14 // Message handlers. |
15 // Must match the constants used in the resource files. | 15 // Must match the constants used in the resource files. |
16 extern const char kEnableNotifyUIWithStateHandler[]; | 16 extern const char kEnableNotifyUIWithStateHandler[]; |
17 extern const char kSendNetLogHandler[]; | 17 extern const char kSendNetLogHandler[]; |
| 18 extern const char kShowFile[]; |
18 extern const char kStartNetLogHandler[]; | 19 extern const char kStartNetLogHandler[]; |
19 extern const char kStopNetLogHandler[]; | 20 extern const char kStopNetLogHandler[]; |
20 | 21 |
21 // Other values. | 22 // Other values. |
22 // Must match the constants used in the resource files. | 23 // Must match the constants used in the resource files. |
23 extern const char kOnExportNetLogInfoChanged[]; | 24 extern const char kOnExportNetLogInfoChanged[]; |
24 | 25 |
25 } // namespace net_log | 26 } // namespace net_log |
26 | 27 |
27 #endif // COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ | 28 #endif // COMPONENTS_NET_LOG_NET_EXPORT_UI_CONSTANTS_H_ |
OLD | NEW |