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

Side by Side Diff: chrome/browser/history/history_indexer.idl

Issue 10816: Fix history_indexer.idl to stop from rebuilding it every time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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 import "oaidl.idl"; 5 import "oaidl.idl";
6 import "ocidl.idl"; 6 import "ocidl.idl";
7 7
8 [ 8 [
9 object, 9 object,
10 uuid(9C1100DD-51D4-4827-AE9F-3B8FAC4AED72), 10 uuid(9C1100DD-51D4-4827-AE9F-3B8FAC4AED72),
(...skipping 25 matching lines...) Expand all
36 // This method is called by Chrome when the users delete their history. 36 // This method is called by Chrome when the users delete their history.
37 // |begin_time| - Represents the start time from which the history needs to be 37 // |begin_time| - Represents the start time from which the history needs to be
38 // deleted. It is given in UTC. 38 // deleted. It is given in UTC.
39 // |end_time| - Represents the end time until when the history needs to be 39 // |end_time| - Represents the end time until when the history needs to be
40 // deleted. It is given in UTC 40 // deleted. It is given in UTC
41 // If both begin_time and end_time are '0', full user history needs to be 41 // If both begin_time and end_time are '0', full user history needs to be
42 // deleted. 42 // deleted.
43 HRESULT DeleteUserHistoryBetween([in] VARIANT begin_time, 43 HRESULT DeleteUserHistoryBetween([in] VARIANT begin_time,
44 [in] VARIANT end_time); 44 [in] VARIANT end_time);
45 }; 45 };
46
47
48 // This dummy library statement enforces the creation of a history_indexer.tlb.
49 // This is necessary since MSVC assumes a .idl always creates a .tlb. Otherwise,
50 // this .idl is always recompiled, giving many engs a headache.
51 [
52 uuid(A5C5B8BE-E7E5-4cb9-A13B-B063361E7B6D),
53 helpstring("Dummy library")
54 ]
55 library history_indexerLib
56 {
57 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698