• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.h"
12 
13 namespace history {
14 
HistoryPublisher()15 HistoryPublisher::HistoryPublisher() {
16 }
17 
~HistoryPublisher()18 HistoryPublisher::~HistoryPublisher() {
19 }
20 
Init()21 bool HistoryPublisher::Init() {
22   return false;
23 }
24 
PublishDataToIndexers(const PageData & page_data) const25 void HistoryPublisher::PublishDataToIndexers(const PageData& page_data)
26     const {
27 }
28 
DeleteUserHistoryBetween(const base::Time & begin_time,const base::Time & end_time) const29 void HistoryPublisher::DeleteUserHistoryBetween(const base::Time& begin_time,
30                                                 const base::Time& end_time)
31     const {
32 }
33 
34 }  // namespace history
35