| 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 archived(false) { |
| 21 } | 21 } |
| 22 | 22 |
| 23 URLsDeletedDetails::~URLsDeletedDetails() {} | 23 URLsDeletedDetails::~URLsDeletedDetails() {} |
| 24 | 24 |
| 25 FaviconChangeDetails::FaviconChangeDetails() {} | |
| 26 | |
| 27 FaviconChangeDetails::~FaviconChangeDetails() {} | |
| 28 | |
| 29 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {} | 25 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {} |
| 30 | 26 |
| 31 KeywordSearchTermDetails::~KeywordSearchTermDetails() {} | 27 KeywordSearchTermDetails::~KeywordSearchTermDetails() {} |
| 32 | 28 |
| 33 } // namespace history | 29 } // namespace history |
| OLD | NEW |