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

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

Issue 71723003: Remove HistoryPublisher code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove ref to history_indexer.idl 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) 2011 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 #include "chrome/browser/history/history_publisher.h"
6
7 #include "base/strings/utf_string_conversions.h"
8
9 namespace history {
10
11 void HistoryPublisher::PublishPageContent(const base::Time& time,
12 const GURL& url,
13 const string16& title,
14 const string16& contents) const {
15 PageData page_data = {
16 time,
17 url,
18 contents.c_str(),
19 title.c_str(),
20 };
21
22 PublishDataToIndexers(page_data);
23 }
24
25 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_publisher.h ('k') | chrome/browser/history/history_publisher_none.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698