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..5aabb18684dfcd6af944693e48f83bddd383a049 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/syslogs/commandline_fetcher.h |
| @@ -0,0 +1,27 @@ |
| +// 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 { |
|
satorux1
2012/08/06 23:47:31
Class comment is missing.
http://google-styleguid
tudalex(Chromium)
2012/08/07 00:56:11
Done.
|
| + public: |
| + CommandLineFetcher() : response_(new SysLogsResponse) {} |
| + ~CommandLineFetcher() {} |
| + |
| + void Fetch(SysLogsFetcherCallback); |
| + |
| + private: |
| + SysLogsResponse * response_; |
|
satorux1
2012/08/06 23:47:31
SysLogsResponse* response_;
tudalex(Chromium)
2012/08/07 00:56:11
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(CommandLineFetcher); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_SYSLOGS_COMMANDLINE_FETCHER_H_ |