OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/browser_about_handler.h" | 5 #include "chrome/browser/browser_about_handler.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "chrome/browser/browser_thread.h" | 29 #include "chrome/browser/browser_thread.h" |
30 #include "chrome/browser/defaults.h" | 30 #include "chrome/browser/defaults.h" |
31 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 31 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
32 #include "chrome/browser/gpu_process_host.h" | 32 #include "chrome/browser/gpu_process_host.h" |
33 #include "chrome/browser/gpu_process_host_ui_shim.h" | 33 #include "chrome/browser/gpu_process_host_ui_shim.h" |
34 #include "chrome/browser/memory_details.h" | 34 #include "chrome/browser/memory_details.h" |
35 #include "chrome/browser/metrics/histogram_synchronizer.h" | 35 #include "chrome/browser/metrics/histogram_synchronizer.h" |
36 #include "chrome/browser/net/predictor_api.h" | 36 #include "chrome/browser/net/predictor_api.h" |
37 #include "chrome/browser/platform_util.h" | 37 #include "chrome/browser/platform_util.h" |
38 #include "chrome/browser/prefs/pref_service.h" | 38 #include "chrome/browser/prefs/pref_service.h" |
39 #include "chrome/browser/profile.h" | 39 #include "chrome/browser/profiles/profile.h" |
40 #include "chrome/browser/profile_manager.h" | 40 #include "chrome/browser/profiles/profile_manager.h" |
41 #include "chrome/browser/renderer_host/render_process_host.h" | 41 #include "chrome/browser/renderer_host/render_process_host.h" |
42 #include "chrome/browser/renderer_host/render_view_host.h" | 42 #include "chrome/browser/renderer_host/render_view_host.h" |
43 #include "chrome/browser/sync/profile_sync_service.h" | 43 #include "chrome/browser/sync/profile_sync_service.h" |
44 #include "chrome/browser/sync/sync_ui_util.h" | 44 #include "chrome/browser/sync/sync_ui_util.h" |
45 #include "chrome/browser/ui/browser.h" | 45 #include "chrome/browser/ui/browser.h" |
46 #include "chrome/common/about_handler.h" | 46 #include "chrome/common/about_handler.h" |
47 #include "chrome/common/chrome_paths.h" | 47 #include "chrome/common/chrome_paths.h" |
48 #include "chrome/common/chrome_version_info.h" | 48 #include "chrome/common/chrome_version_info.h" |
49 #include "chrome/common/gpu_info.h" | 49 #include "chrome/common/gpu_info.h" |
50 #include "chrome/common/jstemplate_builder.h" | 50 #include "chrome/common/jstemplate_builder.h" |
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1209 // Run the dialog. This will re-use the existing one if it's already up. | 1209 // Run the dialog. This will re-use the existing one if it's already up. |
1210 AboutIPCDialog::RunDialog(); | 1210 AboutIPCDialog::RunDialog(); |
1211 return true; | 1211 return true; |
1212 } | 1212 } |
1213 #endif | 1213 #endif |
1214 | 1214 |
1215 #endif // OFFICIAL_BUILD | 1215 #endif // OFFICIAL_BUILD |
1216 | 1216 |
1217 return false; | 1217 return false; |
1218 } | 1218 } |
OLD | NEW |