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

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

Issue 115309: Remove even more ATL dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008-2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/history/history_publisher.h" 5 #include "chrome/browser/history/history_publisher.h"
6 6
7 namespace history { 7 namespace history {
8 8
9 const char* HistoryPublisher::kThumbnailImageFormat = "image/jpeg"; 9 const char* const HistoryPublisher::kThumbnailImageFormat = "image/jpeg";
10 10
11 void HistoryPublisher::PublishPageThumbnail( 11 void HistoryPublisher::PublishPageThumbnail(
12 const std::vector<unsigned char>& thumbnail, const GURL& url, 12 const std::vector<unsigned char>& thumbnail, const GURL& url,
13 const base::Time& time) const { 13 const base::Time& time) const {
14 PageData page_data = { 14 PageData page_data = {
15 time, 15 time,
16 url, 16 url,
17 NULL, 17 NULL,
18 NULL, 18 NULL,
19 kThumbnailImageFormat, 19 kThumbnailImageFormat,
(...skipping 13 matching lines...) Expand all
33 contents.c_str(), 33 contents.c_str(),
34 title.c_str(), 34 title.c_str(),
35 NULL, 35 NULL,
36 NULL, 36 NULL,
37 }; 37 };
38 38
39 PublishDataToIndexers(page_data); 39 PublishDataToIndexers(page_data);
40 } 40 }
41 41
42 } // namespace history 42 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_publisher.h ('k') | chrome/browser/history/history_publisher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698