OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #include "grit/generated_resources.h" | 58 #include "grit/generated_resources.h" |
59 #include "grit/locale_settings.h" | 59 #include "grit/locale_settings.h" |
60 #include "webkit/glue/webkit_glue.h" | 60 #include "webkit/glue/webkit_glue.h" |
61 #include "net/base/escape.h" | 61 #include "net/base/escape.h" |
62 #ifdef CHROME_V8 | 62 #ifdef CHROME_V8 |
63 #include "v8/include/v8.h" | 63 #include "v8/include/v8.h" |
64 #endif | 64 #endif |
65 | 65 |
66 #if defined(OS_WIN) | 66 #if defined(OS_WIN) |
67 #include "chrome/browser/enumerate_modules_model_win.h" | 67 #include "chrome/browser/enumerate_modules_model_win.h" |
68 #include "chrome/browser/views/about_ipc_dialog.h" | 68 #include "chrome/browser/ui/views/about_ipc_dialog.h" |
69 #elif defined(OS_CHROMEOS) | 69 #elif defined(OS_CHROMEOS) |
70 #include "chrome/browser/chromeos/cros/cros_library.h" | 70 #include "chrome/browser/chromeos/cros/cros_library.h" |
71 #include "chrome/browser/chromeos/cros/network_library.h" | 71 #include "chrome/browser/chromeos/cros/network_library.h" |
72 #include "chrome/browser/chromeos/cros/syslogs_library.h" | 72 #include "chrome/browser/chromeos/cros/syslogs_library.h" |
73 #include "chrome/browser/chromeos/version_loader.h" | 73 #include "chrome/browser/chromeos/version_loader.h" |
74 #include "chrome/browser/zygote_host_linux.h" | 74 #include "chrome/browser/zygote_host_linux.h" |
75 #elif defined(OS_MACOSX) | 75 #elif defined(OS_MACOSX) |
76 #include "chrome/browser/ui/cocoa/about_ipc_dialog.h" | 76 #include "chrome/browser/ui/cocoa/about_ipc_dialog.h" |
77 #elif defined(OS_LINUX) | 77 #elif defined(OS_LINUX) |
78 #include "chrome/browser/zygote_host_linux.h" | 78 #include "chrome/browser/zygote_host_linux.h" |
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1119 // Run the dialog. This will re-use the existing one if it's already up. | 1119 // Run the dialog. This will re-use the existing one if it's already up. |
1120 AboutIPCDialog::RunDialog(); | 1120 AboutIPCDialog::RunDialog(); |
1121 return true; | 1121 return true; |
1122 } | 1122 } |
1123 #endif | 1123 #endif |
1124 | 1124 |
1125 #endif // OFFICIAL_BUILD | 1125 #endif // OFFICIAL_BUILD |
1126 | 1126 |
1127 return false; | 1127 return false; |
1128 } | 1128 } |
OLD | NEW |