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

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

Issue 8253002: Move PageTransition into content namespace. While I'm touching all these files, I've also updated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
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() : transition(PageTransition::LINK) {} 9 URLVisitedDetails::URLVisitedDetails()
10 : transition(content::PAGE_TRANSITION_LINK) {}
10 11
11 URLVisitedDetails::~URLVisitedDetails() {} 12 URLVisitedDetails::~URLVisitedDetails() {}
12 13
13 URLsModifiedDetails::URLsModifiedDetails() {} 14 URLsModifiedDetails::URLsModifiedDetails() {}
14 15
15 URLsModifiedDetails::~URLsModifiedDetails() {} 16 URLsModifiedDetails::~URLsModifiedDetails() {}
16 17
17 URLsDeletedDetails::URLsDeletedDetails() : all_history(false) {} 18 URLsDeletedDetails::URLsDeletedDetails() : all_history(false) {}
18 19
19 URLsDeletedDetails::~URLsDeletedDetails() {} 20 URLsDeletedDetails::~URLsDeletedDetails() {}
20 21
21 URLsStarredDetails::URLsStarredDetails(bool being_starred) 22 URLsStarredDetails::URLsStarredDetails(bool being_starred)
22 : starred(being_starred) { 23 : starred(being_starred) {
23 } 24 }
24 25
25 URLsStarredDetails::~URLsStarredDetails() {} 26 URLsStarredDetails::~URLsStarredDetails() {}
26 27
27 FaviconChangeDetails::FaviconChangeDetails() {} 28 FaviconChangeDetails::FaviconChangeDetails() {}
28 29
29 FaviconChangeDetails::~FaviconChangeDetails() {} 30 FaviconChangeDetails::~FaviconChangeDetails() {}
30 31
31 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {} 32 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {}
32 33
33 KeywordSearchTermDetails::~KeywordSearchTermDetails() {} 34 KeywordSearchTermDetails::~KeywordSearchTermDetails() {}
34 35
35 } // namespace history 36 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_notifications.h ('k') | chrome/browser/history/history_querying_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698