blob: c2ae4adf43bf099f780a6c5d7bf451e95c6f8120 [file] [log] [blame]
Ben Murdochbb1529c2013-08-08 10:24:53 +01001// Copyright 2013 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
5#include "chrome/browser/extensions/api/log_private/log_private_api.h"
6
7namespace extensions {
8
9namespace {
10
11const char kErrorNotImplemented[] = "Not implemented";
12
13} // namespace
14
15LogPrivateGetHistoricalFunction::LogPrivateGetHistoricalFunction() {
16}
17
18LogPrivateGetHistoricalFunction::~LogPrivateGetHistoricalFunction() {
19}
20
21bool LogPrivateGetHistoricalFunction::RunImpl() {
22 SetError(kErrorNotImplemented);
23 SendResponse(error_.empty());
24 return false;
25}
26
27void LogPrivateGetHistoricalFunction::OnSystemLogsLoaded(
28 scoped_ptr<chromeos::SystemLogsResponse> sys_info) {
29}
30
31} // namespace extensions