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

Side by Side Diff: base/debug/task_annotator.cc

Issue 893593002: Mechanical rename of tracing includes for /base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « base/android/trace_event_binding.cc ('k') | base/files/file_path_watcher_linux.cc » ('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 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 #include "base/debug/task_annotator.h" 5 #include "base/debug/task_annotator.h"
6 6
7 #include "base/debug/alias.h" 7 #include "base/debug/alias.h"
8 #include "base/debug/trace_event.h"
9 #include "base/pending_task.h" 8 #include "base/pending_task.h"
9 #include "base/trace_event/trace_event.h"
10 #include "base/tracked_objects.h" 10 #include "base/tracked_objects.h"
11 11
12 namespace base { 12 namespace base {
13 namespace debug { 13 namespace debug {
14 14
15 TaskAnnotator::TaskAnnotator() { 15 TaskAnnotator::TaskAnnotator() {
16 } 16 }
17 17
18 TaskAnnotator::~TaskAnnotator() { 18 TaskAnnotator::~TaskAnnotator() {
19 } 19 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 pending_task, stopwatch); 67 pending_task, stopwatch);
68 } 68 }
69 69
70 uint64 TaskAnnotator::GetTaskTraceID(const PendingTask& task) const { 70 uint64 TaskAnnotator::GetTaskTraceID(const PendingTask& task) const {
71 return (static_cast<uint64>(task.sequence_num) << 32) | 71 return (static_cast<uint64>(task.sequence_num) << 32) |
72 ((static_cast<uint64>(reinterpret_cast<intptr_t>(this)) << 32) >> 32); 72 ((static_cast<uint64>(reinterpret_cast<intptr_t>(this)) << 32) >> 32);
73 } 73 }
74 74
75 } // namespace debug 75 } // namespace debug
76 } // namespace base 76 } // namespace base
OLDNEW
« no previous file with comments | « base/android/trace_event_binding.cc ('k') | base/files/file_path_watcher_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698