| 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_UPGRADE_DETECTOR_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UPGRADE_DETECTOR_IMPL_H_ |
| 6 #define CHROME_BROWSER_UPGRADE_DETECTOR_IMPL_H_ | 6 #define CHROME_BROWSER_UPGRADE_DETECTOR_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/timer.h" | 9 #include "base/timer.h" |
| 10 #include "chrome/browser/upgrade_detector.h" | 10 #include "chrome/browser/upgrade_detector.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ScopedRunnableMethodFactory<UpgradeDetectorImpl> method_factory_; | 48 ScopedRunnableMethodFactory<UpgradeDetectorImpl> method_factory_; |
| 49 | 49 |
| 50 // True if this build is a dev or canary channel build. | 50 // True if this build is a dev or canary channel build. |
| 51 bool is_unstable_channel_; | 51 bool is_unstable_channel_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(UpgradeDetectorImpl); | 53 DISALLOW_COPY_AND_ASSIGN(UpgradeDetectorImpl); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 | 56 |
| 57 #endif // CHROME_BROWSER_UPGRADE_DETECTOR_IMPL_H_ | 57 #endif // CHROME_BROWSER_UPGRADE_DETECTOR_IMPL_H_ |
| OLD | NEW |