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