net_export_ui_constants.h 912 B

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