| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Contains functions used by BrowserMain() that are win32-specific. | 5 // Contains functions used by BrowserMain() that are win32-specific. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ | 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ |
| 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ | 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ |
| 9 | 9 |
| 10 #include "base/files/file_path_watcher.h" | 10 #include "base/files/file_path_watcher.h" |
| 11 #include "base/macros.h" |
| 11 #include "chrome/browser/chrome_browser_main.h" | 12 #include "chrome/browser/chrome_browser_main.h" |
| 12 | 13 |
| 13 class DidRunUpdater; | 14 class DidRunUpdater; |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 class CommandLine; | 17 class CommandLine; |
| 17 } | 18 } |
| 18 | 19 |
| 19 // Handle uninstallation when given the appropriate the command-line switch. | 20 // Handle uninstallation when given the appropriate the command-line switch. |
| 20 // If |chrome_still_running| is true a modal dialog will be shown asking the | 21 // If |chrome_still_running| is true a modal dialog will be shown asking the |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 #endif | 74 #endif |
| 74 #if defined(KASKO) | 75 #if defined(KASKO) |
| 75 // Cleans up Kasko crash reports that exceeded the maximum upload attempts. | 76 // Cleans up Kasko crash reports that exceeded the maximum upload attempts. |
| 76 base::FilePathWatcher failed_kasko_crash_report_watcher_; | 77 base::FilePathWatcher failed_kasko_crash_report_watcher_; |
| 77 #endif | 78 #endif |
| 78 | 79 |
| 79 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); | 80 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin); |
| 80 }; | 81 }; |
| 81 | 82 |
| 82 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ | 83 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_ |
| OLD | NEW |