| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2009 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 // A stub implementation of HistoryPublisher used to provide needed symbols. | |
| 6 // For now there is no equivalent of this functionality on systems other than | |
| 7 // Windows. | |
| 8 | |
| 9 #include "chrome/browser/history/history_publisher.h" | |
| 10 | |
| 11 #include "base/time/time.h" | |
| 12 | |
| 13 namespace history { | |
| 14 | |
| 15 HistoryPublisher::HistoryPublisher() { | |
| 16 } | |
| 17 | |
| 18 HistoryPublisher::~HistoryPublisher() { | |
| 19 } | |
| 20 | |
| 21 bool HistoryPublisher::Init() { | |
| 22 return false; | |
| 23 } | |
| 24 | |
| 25 void HistoryPublisher::PublishDataToIndexers(const PageData& page_data) | |
| 26 const { | |
| 27 } | |
| 28 | |
| 29 } // namespace history | |
| OLD | NEW |