| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #if defined(OS_WIN) | 48 #if defined(OS_WIN) |
| 49 #include "chrome/browser/views/about_ipc_dialog.h" | 49 #include "chrome/browser/views/about_ipc_dialog.h" |
| 50 #include "chrome/browser/views/about_network_dialog.h" | 50 #include "chrome/browser/views/about_network_dialog.h" |
| 51 #elif defined(OS_CHROMEOS) | 51 #elif defined(OS_CHROMEOS) |
| 52 #include "chrome/browser/chromeos/chromeos_version_loader.h" | 52 #include "chrome/browser/chromeos/chromeos_version_loader.h" |
| 53 #elif defined(OS_MACOSX) | 53 #elif defined(OS_MACOSX) |
| 54 #include "chrome/browser/cocoa/about_ipc_dialog.h" | 54 #include "chrome/browser/cocoa/about_ipc_dialog.h" |
| 55 #endif | 55 #endif |
| 56 | 56 |
| 57 #if defined(USE_TCMALLOC) | 57 #if defined(USE_TCMALLOC) |
| 58 #include "third_party/tcmalloc/google/malloc_extension.h" | 58 #include "third_party/tcmalloc/tcmalloc/src/google/malloc_extension.h" |
| 59 #endif | 59 #endif |
| 60 | 60 |
| 61 #ifdef CHROME_PERSONALIZATION | 61 #ifdef CHROME_PERSONALIZATION |
| 62 #include "chrome/browser/sync/auth_error_state.h" | 62 #include "chrome/browser/sync/auth_error_state.h" |
| 63 #include "chrome/browser/sync/profile_sync_service.h" | 63 #include "chrome/browser/sync/profile_sync_service.h" |
| 64 using sync_api::SyncManager; | 64 using sync_api::SyncManager; |
| 65 #endif | 65 #endif |
| 66 | 66 |
| 67 | 67 |
| 68 using base::Time; | 68 using base::Time; |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 // Run the dialog. This will re-use the existing one if it's already up. | 862 // Run the dialog. This will re-use the existing one if it's already up. |
| 863 AboutIPCDialog::RunDialog(); | 863 AboutIPCDialog::RunDialog(); |
| 864 return true; | 864 return true; |
| 865 } | 865 } |
| 866 #endif | 866 #endif |
| 867 | 867 |
| 868 #endif // OFFICIAL_BUILD | 868 #endif // OFFICIAL_BUILD |
| 869 | 869 |
| 870 return false; | 870 return false; |
| 871 } | 871 } |
| OLD | NEW |