| 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 BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ | 5 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ |
| 6 #define BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ | 6 #define BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 13 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/pickle.h" | 15 #include "base/pickle.h" |
| 13 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
| 14 #include "base/trace_event/trace_event_impl.h" | 17 #include "base/trace_event/trace_event_impl.h" |
| 15 | 18 |
| 16 namespace base { | 19 namespace base { |
| 17 | 20 |
| 18 class Value; | 21 class Value; |
| 19 | 22 |
| 20 namespace trace_event { | 23 namespace trace_event { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 std::vector<bool> nesting_stack_; | 84 std::vector<bool> nesting_stack_; |
| 82 #endif | 85 #endif |
| 83 | 86 |
| 84 DISALLOW_COPY_AND_ASSIGN(TracedValue); | 87 DISALLOW_COPY_AND_ASSIGN(TracedValue); |
| 85 }; | 88 }; |
| 86 | 89 |
| 87 } // namespace trace_event | 90 } // namespace trace_event |
| 88 } // namespace base | 91 } // namespace base |
| 89 | 92 |
| 90 #endif // BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ | 93 #endif // BASE_TRACE_EVENT_TRACE_EVENT_ARGUMENT_H_ |
| OLD | NEW |