OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "content/browser/webui/content_web_ui_controller_factory.h" | 5 #include "content/browser/webui/content_web_ui_controller_factory.h" |
6 | 6 |
| 7 #include "build/build_config.h" |
7 #include "content/browser/accessibility/accessibility_ui.h" | 8 #include "content/browser/accessibility/accessibility_ui.h" |
8 #include "content/browser/appcache/appcache_internals_ui.h" | 9 #include "content/browser/appcache/appcache_internals_ui.h" |
9 #include "content/browser/gpu/gpu_internals_ui.h" | 10 #include "content/browser/gpu/gpu_internals_ui.h" |
10 #include "content/browser/indexed_db/indexed_db_internals_ui.h" | 11 #include "content/browser/indexed_db/indexed_db_internals_ui.h" |
11 #include "content/browser/media/media_internals_ui.h" | 12 #include "content/browser/media/media_internals_ui.h" |
12 #include "content/browser/net/network_errors_listing_ui.h" | 13 #include "content/browser/net/network_errors_listing_ui.h" |
13 #include "content/browser/service_worker/service_worker_internals_ui.h" | 14 #include "content/browser/service_worker/service_worker_internals_ui.h" |
14 #include "content/browser/tracing/tracing_ui.h" | 15 #include "content/browser/tracing/tracing_ui.h" |
15 #include "content/public/browser/storage_partition.h" | 16 #include "content/public/browser/storage_partition.h" |
16 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 return base::Singleton<ContentWebUIControllerFactory>::get(); | 92 return base::Singleton<ContentWebUIControllerFactory>::get(); |
92 } | 93 } |
93 | 94 |
94 ContentWebUIControllerFactory::ContentWebUIControllerFactory() { | 95 ContentWebUIControllerFactory::ContentWebUIControllerFactory() { |
95 } | 96 } |
96 | 97 |
97 ContentWebUIControllerFactory::~ContentWebUIControllerFactory() { | 98 ContentWebUIControllerFactory::~ContentWebUIControllerFactory() { |
98 } | 99 } |
99 | 100 |
100 } // namespace content | 101 } // namespace content |
OLD | NEW |