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 WebConvertableToTraceFormat_h | 5 #ifndef WebConvertableToTraceFormat_h |
6 #define WebConvertableToTraceFormat_h | 6 #define WebConvertableToTraceFormat_h |
7 | 7 |
| 8 #if 0 |
8 #include "WebPrivatePtr.h" | 9 #include "WebPrivatePtr.h" |
9 #include "WebString.h" | 10 #include "WebString.h" |
10 | 11 |
11 namespace blink { | 12 namespace blink { |
12 | 13 |
13 namespace TraceEvent { | 14 namespace TraceEvent { |
14 class ConvertableToTraceFormat; | 15 class ConvertableToTraceFormat; |
15 } | 16 } |
16 | 17 |
17 class WebConvertableToTraceFormat { | 18 class WebConvertableToTraceFormat { |
(...skipping 14 matching lines...) Expand all Loading... |
32 { | 33 { |
33 assign(r); | 34 assign(r); |
34 return *this; | 35 return *this; |
35 } | 36 } |
36 | 37 |
37 private: | 38 private: |
38 WebPrivatePtr<TraceEvent::ConvertableToTraceFormat> m_private; | 39 WebPrivatePtr<TraceEvent::ConvertableToTraceFormat> m_private; |
39 }; | 40 }; |
40 | 41 |
41 } // namespace blink | 42 } // namespace blink |
| 43 #endif |
42 | 44 |
43 #endif | 45 #endif |
OLD | NEW |