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

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

Issue 235863023: Eliminate the archived history database and clean up related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename a few outstanding instances of "archived" to "expired". Created 6 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_notifications.h" 5 #include "chrome/browser/history/history_notifications.h"
6 6
7 namespace history { 7 namespace history {
8 8
9 URLVisitedDetails::URLVisitedDetails() 9 URLVisitedDetails::URLVisitedDetails()
10 : transition(content::PAGE_TRANSITION_LINK) {} 10 : transition(content::PAGE_TRANSITION_LINK) {}
11 11
12 URLVisitedDetails::~URLVisitedDetails() {} 12 URLVisitedDetails::~URLVisitedDetails() {}
13 13
14 URLsModifiedDetails::URLsModifiedDetails() {} 14 URLsModifiedDetails::URLsModifiedDetails() {}
15 15
16 URLsModifiedDetails::~URLsModifiedDetails() {} 16 URLsModifiedDetails::~URLsModifiedDetails() {}
17 17
18 URLsDeletedDetails::URLsDeletedDetails() 18 URLsDeletedDetails::URLsDeletedDetails()
19 : all_history(false), 19 : all_history(false),
20 archived(false) { 20 expired(false) {
21 } 21 }
22 22
23 URLsDeletedDetails::~URLsDeletedDetails() {} 23 URLsDeletedDetails::~URLsDeletedDetails() {}
24 24
25 KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails( 25 KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails(
26 const URLRow& url_row, 26 const URLRow& url_row,
27 TemplateURLID keyword_id, 27 TemplateURLID keyword_id,
28 const base::string16& term) 28 const base::string16& term)
29 : url_row(url_row), 29 : url_row(url_row),
30 keyword_id(keyword_id), 30 keyword_id(keyword_id),
31 term(term) { 31 term(term) {
32 } 32 }
33 33
34 KeywordSearchUpdatedDetails::~KeywordSearchUpdatedDetails() {} 34 KeywordSearchUpdatedDetails::~KeywordSearchUpdatedDetails() {}
35 35
36 KeywordSearchDeletedDetails::KeywordSearchDeletedDetails(URLID url_row_id) 36 KeywordSearchDeletedDetails::KeywordSearchDeletedDetails(URLID url_row_id)
37 : url_row_id(url_row_id) { 37 : url_row_id(url_row_id) {
38 } 38 }
39 39
40 KeywordSearchDeletedDetails::~KeywordSearchDeletedDetails() {} 40 KeywordSearchDeletedDetails::~KeywordSearchDeletedDetails() {}
41 41
42 } // namespace history 42 } // namespace history
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698