| Index: chrome/browser/history/history_publisher_none.cc
|
| diff --git a/chrome/browser/history/history_publisher_none.cc b/chrome/browser/history/history_publisher_none.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2a164bf99ce1e08e662078f53490c2be46b93d15
|
| --- /dev/null
|
| +++ b/chrome/browser/history/history_publisher_none.cc
|
| @@ -0,0 +1,34 @@
|
| +// Copyright (c) 2009 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.
|
| +
|
| +// A stub implementation of HistoryPublisher used to provide needed symbols.
|
| +// For now there is no equivalent of this functionality on systems other than
|
| +// Windows.
|
| +
|
| +#include "chrome/browser/history/history_publisher.h"
|
| +
|
| +#include "base/time.h"
|
| +
|
| +namespace history {
|
| +
|
| +HistoryPublisher::HistoryPublisher() {
|
| +}
|
| +
|
| +HistoryPublisher::~HistoryPublisher() {
|
| +}
|
| +
|
| +bool HistoryPublisher::Init() {
|
| + return false;
|
| +}
|
| +
|
| +void HistoryPublisher::PublishDataToIndexers(const PageData& page_data)
|
| + const {
|
| +}
|
| +
|
| +void HistoryPublisher::DeleteUserHistoryBetween(const base::Time& begin_time,
|
| + const base::Time& end_time)
|
| + const {
|
| +}
|
| +
|
| +} // namespace history
|
|
|