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

Unified Diff: chrome/browser/history/history_indexer.idl

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/history_publisher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_indexer.idl
diff --git a/chrome/browser/history/history_indexer.idl b/chrome/browser/history/history_indexer.idl
deleted file mode 100644
index 3281a5acbe6c10b3b50e61f654b140fdbc5765c3..0000000000000000000000000000000000000000
--- a/chrome/browser/history/history_indexer.idl
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import "oaidl.idl";
-import "ocidl.idl";
-
-// This class is deprecated and will be removed once all existing
-// users are gone: see http://crbug.com/161116.
-
-[
- object,
- uuid(9C1100DD-51D4-4827-AE9F-3B8FAC4AED72),
- oleautomation,
- nonextensible,
- pointer_default(unique)
-]
-interface IChromeHistoryIndexer : IUnknown {
- // This is the method called by Chrome to send content and thumbnail of the
- // page to be indexed. The html content and thumbnail for the same url
- // are sent at different points in time. The thumbnail_format and
- // thumbnail parameters will be NULL when sending only the content.
- // |time| - The last time at which user visited the page. The time is in UTC.
- // |url| - The url of the page being published for indexing.
- // |html| - The html content of the page being published for indexing.
- // |title| - The url of the page being published for indexing.
- // |thumbnail_format| - The format of the thumbnail image. It is currently
- // "image/jpeg", indicating that the thumbail is in jpeg
- // format.
- // |thumbnail| - This is an array of bytes that represents the thumbnail in
- // the format specified by the "thumbnail_format" parameter.
- HRESULT SendPageData([in] VARIANT time,
- [in] BSTR url,
- [in] BSTR html,
- [in] BSTR title,
- [in] BSTR thumbnail_format,
- [in] VARIANT thumbnail);
-
- // This method isn't used anymore.
- HRESULT DeleteUserHistoryBetween([in] VARIANT begin_time,
- [in] VARIANT end_time);
-};
-
-
-// This dummy library statement enforces the creation of a history_indexer.tlb.
-// This is necessary since MSVC assumes a .idl always creates a .tlb. Otherwise,
-// this .idl is always recompiled, giving many engs a headache.
-[
- uuid(A5C5B8BE-E7E5-4cb9-A13B-B063361E7B6D),
- helpstring("Dummy library")
-]
-library history_indexerLib
-{
-};
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/history_publisher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698