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 #include "components/net_log/net_export_ui_constants.h" | 5 #include "components/net_log/net_export_ui_constants.h" |
6 | 6 |
7 namespace net_log { | 7 namespace net_log { |
8 | 8 |
9 // Resource paths. | 9 // Resource paths. |
10 const char kNetExportUIJS[] = "net_export.js"; | 10 const char kNetExportUIJS[] = "net_export.js"; |
11 | 11 |
12 // Message handlers. | 12 // Message handlers. |
13 const char kEnableNotifyUIWithStateHandler[] = "enableNotifyUIWithState"; | 13 const char kEnableNotifyUIWithStateHandler[] = "enableNotifyUIWithState"; |
14 const char kSendNetLogHandler[] = "sendNetLog"; | 14 const char kSendNetLogHandler[] = "sendNetLog"; |
| 15 const char kShowFile[] = "showFile"; |
15 const char kStartNetLogHandler[] = "startNetLog"; | 16 const char kStartNetLogHandler[] = "startNetLog"; |
16 const char kStopNetLogHandler[] = "stopNetLog"; | 17 const char kStopNetLogHandler[] = "stopNetLog"; |
17 | 18 |
18 // Other values. | 19 // Other values. |
19 const char kOnExportNetLogInfoChanged[] = | 20 const char kOnExportNetLogInfoChanged[] = |
20 "NetExportView.getInstance().onExportNetLogInfoChanged"; | 21 "NetExportView.getInstance().onExportNetLogInfoChanged"; |
21 | 22 |
22 } // namespace net_log | 23 } // namespace net_log |
OLD | NEW |