OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/cros/syslogs_library.h" | 5 #include "chrome/browser/chromeos/cros/syslogs_library.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "chrome/browser/chrome_thread.h" | 8 #include "chrome/browser/chrome_thread.h" |
9 #include "chrome/browser/chromeos/cros/cros_library.h" | 9 #include "chrome/browser/chromeos/cros/cros_library.h" |
10 | 10 |
11 namespace chromeos { | 11 namespace chromeos { |
12 | 12 |
13 LogDictionaryType* SyslogsLibraryImpl::GetSyslogs(FilePath* tmpfilename) { | 13 class SyslogsLibraryImpl : public SyslogsLibrary { |
14 if (CrosLibrary::Get()->EnsureLoaded()) { | 14 public: |
15 return chromeos::GetSystemLogs(tmpfilename); | 15 SyslogsLibraryImpl() {} |
| 16 virtual ~SyslogsLibraryImpl() {} |
| 17 |
| 18 LogDictionaryType* GetSyslogs(FilePath* tmpfilename) { |
| 19 if (CrosLibrary::Get()->EnsureLoaded()) { |
| 20 return chromeos::GetSystemLogs(tmpfilename); |
| 21 } |
| 22 return NULL; |
16 } | 23 } |
17 return NULL; | 24 }; |
| 25 |
| 26 class SyslogsLibraryStubImpl : public SyslogsLibrary { |
| 27 public: |
| 28 SyslogsLibraryStubImpl() {} |
| 29 virtual ~SyslogsLibraryStubImpl() {} |
| 30 |
| 31 LogDictionaryType* GetSyslogs(FilePath* tmpfilename) { |
| 32 return &log_dictionary_; |
| 33 } |
| 34 |
| 35 private: |
| 36 LogDictionaryType log_dictionary_; |
| 37 }; |
| 38 |
| 39 // static |
| 40 SyslogsLibrary* SyslogsLibrary::GetImpl(bool stub) { |
| 41 if (stub) |
| 42 return new SyslogsLibraryStubImpl(); |
| 43 else |
| 44 return new SyslogsLibraryImpl(); |
18 } | 45 } |
19 | 46 |
20 } // namespace chromeos | 47 } // namespace chromeos |
OLD | NEW |