Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1984)

Side by Side Diff: cc/debug/devtools_instrumentation.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/net/connection_handler.h ('k') | cc/debug/rendering_stats.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_ 5 #ifndef CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_
6 #define CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_ 6 #define CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h"
11 #include "base/trace_event/trace_event.h" 12 #include "base/trace_event/trace_event.h"
12 #include "base/trace_event/trace_event_argument.h" 13 #include "base/trace_event/trace_event_argument.h"
13 14
14 namespace cc { 15 namespace cc {
15 namespace devtools_instrumentation { 16 namespace devtools_instrumentation {
16 17
17 namespace internal { 18 namespace internal {
18 const char kCategory[] = TRACE_DISABLED_BY_DEFAULT("devtools.timeline"); 19 const char kCategory[] = TRACE_DISABLED_BY_DEFAULT("devtools.timeline");
19 const char kCategoryFrame[] = 20 const char kCategoryFrame[] =
20 TRACE_DISABLED_BY_DEFAULT("devtools.timeline.frame"); 21 TRACE_DISABLED_BY_DEFAULT("devtools.timeline.frame");
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 TRACE_EVENT_INSTANT2( 175 TRACE_EVENT_INSTANT2(
175 internal::kCategoryFrame, internal::kNeedsBeginFrameChanged, 176 internal::kCategoryFrame, internal::kNeedsBeginFrameChanged,
176 TRACE_EVENT_SCOPE_THREAD, internal::kLayerTreeId, layer_tree_host_id, 177 TRACE_EVENT_SCOPE_THREAD, internal::kLayerTreeId, layer_tree_host_id,
177 internal::kData, NeedsBeginFrameData(new_value)); 178 internal::kData, NeedsBeginFrameData(new_value));
178 } 179 }
179 180
180 } // namespace devtools_instrumentation 181 } // namespace devtools_instrumentation
181 } // namespace cc 182 } // namespace cc
182 183
183 #endif // CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_ 184 #endif // CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_
OLDNEW
« no previous file with comments | « blimp/net/connection_handler.h ('k') | cc/debug/rendering_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698