Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: chrome/browser/chromeos/cros/syslogs_library.cc

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/syslogs_library.h ('k') | chrome/browser/chromeos/cros/system_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698