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

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

Issue 651193002: Remove NOTIFICATION_HISTORY_URL_VISITED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@373326.2
Patch Set: Address comments Created 6 years, 2 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
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()
10 : transition(ui::PAGE_TRANSITION_LINK) {}
11
12 URLVisitedDetails::~URLVisitedDetails() {}
13
14 URLsModifiedDetails::URLsModifiedDetails() {} 9 URLsModifiedDetails::URLsModifiedDetails() {}
15 10
16 URLsModifiedDetails::~URLsModifiedDetails() {} 11 URLsModifiedDetails::~URLsModifiedDetails() {}
17 12
18 URLsDeletedDetails::URLsDeletedDetails() 13 URLsDeletedDetails::URLsDeletedDetails()
19 : all_history(false), 14 : all_history(false),
20 expired(false) { 15 expired(false) {
21 } 16 }
22 17
23 URLsDeletedDetails::~URLsDeletedDetails() {} 18 URLsDeletedDetails::~URLsDeletedDetails() {}
24 19
25 KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails( 20 KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails(
26 const URLRow& url_row, 21 const URLRow& url_row,
27 KeywordID keyword_id, 22 KeywordID keyword_id,
28 const base::string16& term) 23 const base::string16& term)
29 : url_row(url_row), 24 : url_row(url_row),
30 keyword_id(keyword_id), 25 keyword_id(keyword_id),
31 term(term) { 26 term(term) {
32 } 27 }
33 28
34 KeywordSearchUpdatedDetails::~KeywordSearchUpdatedDetails() {} 29 KeywordSearchUpdatedDetails::~KeywordSearchUpdatedDetails() {}
35 30
36 KeywordSearchDeletedDetails::KeywordSearchDeletedDetails(URLID url_row_id) 31 KeywordSearchDeletedDetails::KeywordSearchDeletedDetails(URLID url_row_id)
37 : url_row_id(url_row_id) { 32 : url_row_id(url_row_id) {
38 } 33 }
39 34
40 KeywordSearchDeletedDetails::~KeywordSearchDeletedDetails() {} 35 KeywordSearchDeletedDetails::~KeywordSearchDeletedDetails() {}
41 36
42 } // namespace history 37 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_notifications.h ('k') | chrome/browser/history/in_memory_url_index.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698