| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
| 18 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" | 18 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
| 19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 20 #include "content/public/browser/tracing_controller.h" | 20 #include "content/public/browser/tracing_controller.h" |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class RefCountedString; | |
| 24 class Timer; | 23 class Timer; |
| 25 } | 24 } |
| 26 | 25 |
| 27 namespace content { | 26 namespace content { |
| 28 namespace devtools { | 27 namespace devtools { |
| 29 | 28 |
| 30 class DevToolsIOContext; | 29 class DevToolsIOContext; |
| 31 | 30 |
| 32 namespace tracing { | 31 namespace tracing { |
| 33 | 32 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 FRIEND_TEST_ALL_PREFIXES(TracingHandlerTest, | 92 FRIEND_TEST_ALL_PREFIXES(TracingHandlerTest, |
| 94 GetTraceConfigFromDevToolsConfig); | 93 GetTraceConfigFromDevToolsConfig); |
| 95 DISALLOW_COPY_AND_ASSIGN(TracingHandler); | 94 DISALLOW_COPY_AND_ASSIGN(TracingHandler); |
| 96 }; | 95 }; |
| 97 | 96 |
| 98 } // namespace tracing | 97 } // namespace tracing |
| 99 } // namespace devtools | 98 } // namespace devtools |
| 100 } // namespace content | 99 } // namespace content |
| 101 | 100 |
| 102 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ | 101 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TRACING_HANDLER_H_ |
| OLD | NEW |