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 <windows.h> | 5 #include <windows.h> |
6 #include <shlwapi.h> | 6 #include <shlwapi.h> |
7 | 7 |
| 8 #include "base/command_line.h" |
| 9 #include "base/logging.h" |
8 #include "base/file_util.h" | 10 #include "base/file_util.h" |
9 #include "chrome/app/breakpad_win.h" | 11 #include "chrome/app/breakpad_win.h" |
10 #include "chrome/app/client_util.h" | 12 #include "chrome/app/client_util.h" |
11 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
12 #include "chrome/common/result_codes.h" | 14 #include "chrome/common/result_codes.h" |
13 #include "chrome/installer/util/browser_distribution.h" | 15 #include "chrome/installer/util/browser_distribution.h" |
14 #include "chrome/installer/util/install_util.h" | 16 #include "chrome/installer/util/install_util.h" |
15 #include "chrome/installer/util/google_update_constants.h" | 17 #include "chrome/installer/util/google_update_constants.h" |
16 #include "chrome/installer/util/util_constants.h" | 18 #include "chrome/installer/util/util_constants.h" |
17 | 19 |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 } | 292 } |
291 }; | 293 }; |
292 | 294 |
293 MainDllLoader* MakeMainDllLoader() { | 295 MainDllLoader* MakeMainDllLoader() { |
294 #if defined(GOOGLE_CHROME_BUILD) | 296 #if defined(GOOGLE_CHROME_BUILD) |
295 return new ChromeDllLoader(); | 297 return new ChromeDllLoader(); |
296 #else | 298 #else |
297 return new ChromiumDllLoader(); | 299 return new ChromiumDllLoader(); |
298 #endif | 300 #endif |
299 } | 301 } |
OLD | NEW |