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

Side by Side Diff: cc/output/filter_operations.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: Created 5 years, 11 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 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_OUTPUT_FILTER_OPERATIONS_H_ 5 #ifndef CC_OUTPUT_FILTER_OPERATIONS_H_
6 #define CC_OUTPUT_FILTER_OPERATIONS_H_ 6 #define CC_OUTPUT_FILTER_OPERATIONS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "cc/output/filter_operation.h" 12 #include "cc/output/filter_operation.h"
13 13
14 namespace base { 14 namespace base {
15 namespace trace_event {
16 class TracedValue;
17 }
18
15 namespace debug { 19 namespace debug {
16 class TracedValue; 20 using ::base::trace_event::TracedValue;
17 } 21 }
18 class Value; 22 class Value;
19 } 23 }
20 24
21 namespace cc { 25 namespace cc {
22 26
23 // An ordered list of filter operations. 27 // An ordered list of filter operations.
24 class CC_EXPORT FilterOperations { 28 class CC_EXPORT FilterOperations {
25 public: 29 public:
26 FilterOperations(); 30 FilterOperations();
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 76
73 void AsValueInto(base::debug::TracedValue* value) const; 77 void AsValueInto(base::debug::TracedValue* value) const;
74 78
75 private: 79 private:
76 std::vector<FilterOperation> operations_; 80 std::vector<FilterOperation> operations_;
77 }; 81 };
78 82
79 } // namespace cc 83 } // namespace cc
80 84
81 #endif // CC_OUTPUT_FILTER_OPERATIONS_H_ 85 #endif // CC_OUTPUT_FILTER_OPERATIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698