OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_TRACING_UI_H_ | 5 #ifndef CONTENT_BROWSER_TRACING_TRACING_UI_H_ |
6 #define CONTENT_BROWSER_TRACING_UI_H_ | 6 #define CONTENT_BROWSER_TRACING_TRACING_UI_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "content/public/browser/web_ui_controller.h" | 12 #include "content/public/browser/web_ui_controller.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 class TraceUploader; | 16 class TraceUploader; |
(...skipping 12 matching lines...) Expand all Loading... |
29 private: | 29 private: |
30 scoped_ptr<TracingDelegate> delegate_; | 30 scoped_ptr<TracingDelegate> delegate_; |
31 scoped_ptr<TraceUploader> trace_uploader_; | 31 scoped_ptr<TraceUploader> trace_uploader_; |
32 base::WeakPtrFactory<TracingUI> weak_factory_; | 32 base::WeakPtrFactory<TracingUI> weak_factory_; |
33 | 33 |
34 DISALLOW_COPY_AND_ASSIGN(TracingUI); | 34 DISALLOW_COPY_AND_ASSIGN(TracingUI); |
35 }; | 35 }; |
36 | 36 |
37 } // namespace content | 37 } // namespace content |
38 | 38 |
39 #endif // CONTENT_BROWSER_TRACING_UI_H_ | 39 #endif // CONTENT_BROWSER_TRACING_TRACING_UI_H_ |
OLD | NEW |