| 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 <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "app/l10n_util.h" | 10 #include "app/l10n_util.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/app/chrome_version_info.h" | 23 #include "chrome/app/chrome_version_info.h" |
| 24 #include "chrome/browser/browser.h" | 24 #include "chrome/browser/browser.h" |
| 25 #include "chrome/browser/browser_process.h" | 25 #include "chrome/browser/browser_process.h" |
| 26 #include "chrome/browser/chrome_thread.h" | 26 #include "chrome/browser/chrome_thread.h" |
| 27 #include "chrome/browser/defaults.h" | 27 #include "chrome/browser/defaults.h" |
| 28 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 28 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 29 #include "chrome/browser/google_service_auth_error.h" | 29 #include "chrome/browser/google_service_auth_error.h" |
| 30 #include "chrome/browser/memory_details.h" | 30 #include "chrome/browser/memory_details.h" |
| 31 #include "chrome/browser/metrics/histogram_synchronizer.h" | 31 #include "chrome/browser/metrics/histogram_synchronizer.h" |
| 32 #include "chrome/browser/net/dns_global.h" | 32 #include "chrome/browser/net/dns_global.h" |
| 33 #include "chrome/browser/platform_util.h" |
| 33 #include "chrome/browser/pref_service.h" | 34 #include "chrome/browser/pref_service.h" |
| 34 #include "chrome/browser/profile.h" | 35 #include "chrome/browser/profile.h" |
| 35 #include "chrome/browser/profile_manager.h" | 36 #include "chrome/browser/profile_manager.h" |
| 36 #include "chrome/browser/renderer_host/render_process_host.h" | 37 #include "chrome/browser/renderer_host/render_process_host.h" |
| 37 #include "chrome/browser/renderer_host/render_view_host.h" | 38 #include "chrome/browser/renderer_host/render_view_host.h" |
| 38 #include "chrome/browser/sync/profile_sync_service.h" | 39 #include "chrome/browser/sync/profile_sync_service.h" |
| 39 #include "chrome/common/chrome_paths.h" | 40 #include "chrome/common/chrome_paths.h" |
| 40 #include "chrome/common/jstemplate_builder.h" | 41 #include "chrome/common/jstemplate_builder.h" |
| 41 #include "chrome/common/platform_util.h" | |
| 42 #include "chrome/common/pref_names.h" | 42 #include "chrome/common/pref_names.h" |
| 43 #include "chrome/common/render_messages.h" | 43 #include "chrome/common/render_messages.h" |
| 44 #include "chrome/common/url_constants.h" | 44 #include "chrome/common/url_constants.h" |
| 45 #include "chrome/renderer/about_handler.h" | 45 #include "chrome/renderer/about_handler.h" |
| 46 #include "googleurl/src/gurl.h" | 46 #include "googleurl/src/gurl.h" |
| 47 #include "grit/browser_resources.h" | 47 #include "grit/browser_resources.h" |
| 48 #include "grit/chromium_strings.h" | 48 #include "grit/chromium_strings.h" |
| 49 #include "grit/generated_resources.h" | 49 #include "grit/generated_resources.h" |
| 50 #include "grit/locale_settings.h" | 50 #include "grit/locale_settings.h" |
| 51 #include "webkit/glue/webkit_glue.h" | 51 #include "webkit/glue/webkit_glue.h" |
| (...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 // Run the dialog. This will re-use the existing one if it's already up. | 993 // Run the dialog. This will re-use the existing one if it's already up. |
| 994 AboutIPCDialog::RunDialog(); | 994 AboutIPCDialog::RunDialog(); |
| 995 return true; | 995 return true; |
| 996 } | 996 } |
| 997 #endif | 997 #endif |
| 998 | 998 |
| 999 #endif // OFFICIAL_BUILD | 999 #endif // OFFICIAL_BUILD |
| 1000 | 1000 |
| 1001 return false; | 1001 return false; |
| 1002 } | 1002 } |
| OLD | NEW |