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

Side by Side Diff: content/renderer/scheduler/task_queue_manager.h

Issue 882673002: Move tracing namespace from base::debug to base::trace_event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_trace_part1
Patch Set: Edited formatting 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
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 #ifndef CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_ 5 #ifndef CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_
6 #define CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_ 6 #define CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_
7 7
8 #include "base/atomic_sequence_num.h" 8 #include "base/atomic_sequence_num.h"
9 #include "base/debug/task_annotator.h" 9 #include "base/debug/task_annotator.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "base/pending_task.h" 12 #include "base/pending_task.h"
13 #include "base/single_thread_task_runner.h" 13 #include "base/single_thread_task_runner.h"
14 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
15 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
16 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
17 17
18 namespace base { 18 namespace base {
19 namespace debug { 19 namespace trace_event {
20 class ConvertableToTraceFormat; 20 class ConvertableToTraceFormat;
21 class TracedValue; 21 class TracedValue;
22 } 22 }
23
24 // This is added temporarily. Once the renaming of namespace usages
25 // accross all folders are done, this will be removed.
26 // TODO(ssid): crrev.com/837303004
27 namespace debug {
28 using ::base::trace_event::ConvertableToTraceFormat;
29 using ::base::trace_event::TracedValue;
23 } 30 }
31 } // namespace base
24 32
25 namespace cc { 33 namespace cc {
26 class TestNowSource; 34 class TestNowSource;
27 } 35 }
28 36
29 namespace content { 37 namespace content {
30 namespace internal { 38 namespace internal {
31 class TaskQueue; 39 class TaskQueue;
32 } 40 }
33 class TaskQueueSelector; 41 class TaskQueueSelector;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 scoped_refptr<cc::TestNowSource> time_source_; 164 scoped_refptr<cc::TestNowSource> time_source_;
157 165
158 base::WeakPtrFactory<TaskQueueManager> weak_factory_; 166 base::WeakPtrFactory<TaskQueueManager> weak_factory_;
159 167
160 DISALLOW_COPY_AND_ASSIGN(TaskQueueManager); 168 DISALLOW_COPY_AND_ASSIGN(TaskQueueManager);
161 }; 169 };
162 170
163 } // namespace content 171 } // namespace content
164 172
165 #endif // CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_ 173 #endif // CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698