Chromium Code Reviews| Index: chrome/browser/chromeos/syslogs/commandline_fetcher.h |
| diff --git a/chrome/browser/chromeos/syslogs/commandline_fetcher.h b/chrome/browser/chromeos/syslogs/commandline_fetcher.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c35e759bafb6ebdc31c412de25c74fe167e0a72c |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/syslogs/commandline_fetcher.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CHROMEOS_SYSLOGS_COMMANDLINE_FETCHER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_SYSLOGS_COMMANDLINE_FETCHER_H_ |
| + |
| +#include "chrome/browser/chromeos/syslogs/syslogs_fetcher.h" |
| + |
| +namespace chromeos { |
| + |
| +class CommandLineFetcher:public SysLogsInterface { |
|
rkc
2012/08/06 18:30:18
CommandLineFetcher : public
tudalex(Chromium)
2012/08/06 19:14:22
Done.
|
| + public: |
| + void Fetch(SysLogsFetcherCallback); |
|
rkc
2012/08/06 18:30:18
Move fetch to below ctor and dtor, add a newline a
tudalex(Chromium)
2012/08/06 19:14:22
Done.
|
| + CommandLineFetcher() : response_(new SysLogsResponse) {} |
| + ~CommandLineFetcher() {} |
|
rkc
2012/08/06 18:30:18
Newline before private:
tudalex(Chromium)
2012/08/06 19:14:22
Done.
|
| + private: |
| + SysLogsResponse * response_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(CommandLineFetcher); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_SYSLOGS_COMMANDLINE_FETCHER_H_ |