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 15 matching lines...) Expand all Loading... |
26 #include "base/utf_string_conversions.h" | 26 #include "base/utf_string_conversions.h" |
27 #include "chrome/browser/browser.h" | 27 #include "chrome/browser/browser.h" |
28 #include "chrome/browser/browser_process.h" | 28 #include "chrome/browser/browser_process.h" |
29 #include "chrome/browser/chrome_thread.h" | 29 #include "chrome/browser/chrome_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/memory_details.h" | 32 #include "chrome/browser/memory_details.h" |
33 #include "chrome/browser/metrics/histogram_synchronizer.h" | 33 #include "chrome/browser/metrics/histogram_synchronizer.h" |
34 #include "chrome/browser/net/predictor_api.h" | 34 #include "chrome/browser/net/predictor_api.h" |
35 #include "chrome/browser/platform_util.h" | 35 #include "chrome/browser/platform_util.h" |
36 #include "chrome/browser/pref_service.h" | 36 #include "chrome/browser/prefs/pref_service.h" |
37 #include "chrome/browser/profile.h" | 37 #include "chrome/browser/profile.h" |
38 #include "chrome/browser/profile_manager.h" | 38 #include "chrome/browser/profile_manager.h" |
39 #include "chrome/browser/renderer_host/render_process_host.h" | 39 #include "chrome/browser/renderer_host/render_process_host.h" |
40 #include "chrome/browser/renderer_host/render_view_host.h" | 40 #include "chrome/browser/renderer_host/render_view_host.h" |
41 #include "chrome/browser/sync/profile_sync_service.h" | 41 #include "chrome/browser/sync/profile_sync_service.h" |
42 #include "chrome/common/about_handler.h" | 42 #include "chrome/common/about_handler.h" |
43 #include "chrome/common/chrome_paths.h" | 43 #include "chrome/common/chrome_paths.h" |
44 #include "chrome/common/chrome_version_info.h" | 44 #include "chrome/common/chrome_version_info.h" |
45 #include "chrome/common/jstemplate_builder.h" | 45 #include "chrome/common/jstemplate_builder.h" |
46 #include "chrome/common/net/gaia/google_service_auth_error.h" | 46 #include "chrome/common/net/gaia/google_service_auth_error.h" |
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1192 // Run the dialog. This will re-use the existing one if it's already up. | 1192 // Run the dialog. This will re-use the existing one if it's already up. |
1193 AboutIPCDialog::RunDialog(); | 1193 AboutIPCDialog::RunDialog(); |
1194 return true; | 1194 return true; |
1195 } | 1195 } |
1196 #endif | 1196 #endif |
1197 | 1197 |
1198 #endif // OFFICIAL_BUILD | 1198 #endif // OFFICIAL_BUILD |
1199 | 1199 |
1200 return false; | 1200 return false; |
1201 } | 1201 } |
OLD | NEW |