| 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 #include "chrome/browser/chromeos/upgrade_detector_chromeos.h" | 5 #include "chrome/browser/chromeos/upgrade_detector_chromeos.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "chrome/browser/chromeos/cros/cros_library.h" | 8 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // static | 70 // static |
| 71 UpgradeDetectorChromeos* UpgradeDetectorChromeos::GetInstance() { | 71 UpgradeDetectorChromeos* UpgradeDetectorChromeos::GetInstance() { |
| 72 return Singleton<UpgradeDetectorChromeos>::get(); | 72 return Singleton<UpgradeDetectorChromeos>::get(); |
| 73 } | 73 } |
| 74 | 74 |
| 75 // static | 75 // static |
| 76 UpgradeDetector* UpgradeDetector::GetInstance() { | 76 UpgradeDetector* UpgradeDetector::GetInstance() { |
| 77 return UpgradeDetectorChromeos::GetInstance(); | 77 return UpgradeDetectorChromeos::GetInstance(); |
| 78 } | 78 } |
| OLD | NEW |