OLD | NEW |
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 |
OLD | NEW |