Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Side by Side Diff: chrome/browser/history/history_publisher_none.cc

Issue 18758: Port some unit tests from chrome/browser/ (Closed)
Patch Set: port the tests Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.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 void HistoryPublisher::DeleteUserHistoryBetween(const base::Time& begin_time,
30 const base::Time& end_time)
31 const {
32 }
33
34 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_publisher.cc ('k') | chrome/browser/history/history_publisher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698