| OLD | NEW |
| 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ | 5 #ifndef CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ |
| 6 #define CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ | 6 #define CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 87 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 88 static double GetLastModifiedTimeOfExe(); | 88 static double GetLastModifiedTimeOfExe(); |
| 89 static double saved_last_modified_time_of_exe_; | 89 static double saved_last_modified_time_of_exe_; |
| 90 #endif | 90 #endif |
| 91 static CommandLine* new_command_line_; | 91 static CommandLine* new_command_line_; |
| 92 | 92 |
| 93 DISALLOW_IMPLICIT_CONSTRUCTORS(Upgrade); | 93 DISALLOW_IMPLICIT_CONSTRUCTORS(Upgrade); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ | 96 #endif // CHROME_BROWSER_FIRST_RUN_UPGRADE_H_ |
| OLD | NEW |