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

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

Issue 71723003: Remove HistoryPublisher code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
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/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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698