Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 #ifndef CHROME_BROWSER_CHROMEOS_SYSTEM_LSBRELEASE_FETCHER_H_ | |
| 5 #define CHROME_BROWSER_CHROMEOS_SYSTEM_LSBRELEASE_FETCHER_H_ | |
| 6 | |
| 7 #include <string> | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/bind.h" | |
| 11 #include "base/bind_helpers.h" | |
| 12 #include "base/callback.h" | |
| 13 #include "base/memory/singleton.h" | |
| 14 #include "base/synchronization/lock.h" | |
| 15 #include "chrome/browser/chromeos/system/syslogs_fetcher.h" | |
| 16 | |
| 17 namespace chromeos { | |
| 18 namespace system { | |
| 19 | |
| 20 class LSBReleaseFetcher : public SysLogsInterface { | |
| 21 public: | |
| 22 void Fetch(SysLogsFetcherCallback); | |
| 23 ~LSBReleaseFetcher() {} | |
| 24 | |
|
rkc1
2012/08/04 01:15:05
DISALLOW_COPY_AND_ASSIGN; here and other classes.
tudalex(Chromium)
2012/08/05 01:15:12
Should these be done on Singleton classes also?
Do
| |
| 25 }; | |
| 26 | |
| 27 } // namespace system | |
| 28 } // namespace chromeos | |
| 29 | |
| 30 #endif // CHROME_BROWSER_CHROMEOS_SYSTEM_LSBRELEASE_FETCHER_H_ | |
| OLD | NEW |