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

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

Issue 10380015: Now mark delete notifications for archived URLs specially (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback. Created 8 years, 7 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
« no previous file with comments | « chrome/browser/history/history_notifications.h ('k') | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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() : all_history(false) {} 18 URLsDeletedDetails::URLsDeletedDetails()
19 : all_history(false),
20 archived(false) {
21 }
19 22
20 URLsDeletedDetails::~URLsDeletedDetails() {} 23 URLsDeletedDetails::~URLsDeletedDetails() {}
21 24
22 URLsStarredDetails::URLsStarredDetails(bool being_starred) 25 URLsStarredDetails::URLsStarredDetails(bool being_starred)
23 : starred(being_starred) { 26 : starred(being_starred) {
24 } 27 }
25 28
26 URLsStarredDetails::~URLsStarredDetails() {} 29 URLsStarredDetails::~URLsStarredDetails() {}
27 30
28 FaviconChangeDetails::FaviconChangeDetails() {} 31 FaviconChangeDetails::FaviconChangeDetails() {}
29 32
30 FaviconChangeDetails::~FaviconChangeDetails() {} 33 FaviconChangeDetails::~FaviconChangeDetails() {}
31 34
32 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {} 35 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {}
33 36
34 KeywordSearchTermDetails::~KeywordSearchTermDetails() {} 37 KeywordSearchTermDetails::~KeywordSearchTermDetails() {}
35 38
36 } // namespace history 39 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_notifications.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698