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 |
11 #include "app/l10n_util.h" | 11 #include "app/l10n_util.h" |
12 #include "app/resource_bundle.h" | 12 #include "app/resource_bundle.h" |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/i18n/number_formatting.h" | 15 #include "base/i18n/number_formatting.h" |
16 #include "base/metrics/histogram.h" | 16 #include "base/metrics/histogram.h" |
17 #include "base/metrics/stats_table.h" | 17 #include "base/metrics/stats_table.h" |
18 #include "base/path_service.h" | 18 #include "base/path_service.h" |
19 #include "base/platform_thread.h" | 19 #include "base/platform_thread.h" |
20 #include "base/singleton.h" | 20 #include "base/singleton.h" |
21 #include "base/stringprintf.h" | 21 #include "base/stringprintf.h" |
22 #include "base/string_number_conversions.h" | 22 #include "base/string_number_conversions.h" |
23 #include "base/string_piece.h" | 23 #include "base/string_piece.h" |
24 #include "base/string_util.h" | 24 #include "base/string_util.h" |
25 #include "base/thread.h" | 25 #include "base/threading/thread.h" |
26 #include "base/tracked_objects.h" | 26 #include "base/tracked_objects.h" |
27 #include "base/utf_string_conversions.h" | 27 #include "base/utf_string_conversions.h" |
28 #include "chrome/browser/about_flags.h" | 28 #include "chrome/browser/about_flags.h" |
29 #include "chrome/browser/browser_process.h" | 29 #include "chrome/browser/browser_process.h" |
30 #include "chrome/browser/browser_thread.h" | 30 #include "chrome/browser/browser_thread.h" |
31 #include "chrome/browser/defaults.h" | 31 #include "chrome/browser/defaults.h" |
32 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 32 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
33 #include "chrome/browser/gpu_process_host.h" | 33 #include "chrome/browser/gpu_process_host.h" |
34 #include "chrome/browser/gpu_process_host_ui_shim.h" | 34 #include "chrome/browser/gpu_process_host_ui_shim.h" |
35 #include "chrome/browser/memory_details.h" | 35 #include "chrome/browser/memory_details.h" |
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1120 // Run the dialog. This will re-use the existing one if it's already up. | 1120 // Run the dialog. This will re-use the existing one if it's already up. |
1121 AboutIPCDialog::RunDialog(); | 1121 AboutIPCDialog::RunDialog(); |
1122 return true; | 1122 return true; |
1123 } | 1123 } |
1124 #endif | 1124 #endif |
1125 | 1125 |
1126 #endif // OFFICIAL_BUILD | 1126 #endif // OFFICIAL_BUILD |
1127 | 1127 |
1128 return false; | 1128 return false; |
1129 } | 1129 } |
OLD | NEW |