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