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

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

Issue 7064033: Virtual destructors should have virtual keyword. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 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.h ('k') | chrome/browser/history/history_types.h » ('j') | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // Structs that hold data used in broadcasting notifications. 5 // Structs that hold data used in broadcasting notifications.
6 6
7 #ifndef CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__ 7 #ifndef CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__
8 #define CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__ 8 #define CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__
9 #pragma once 9 #pragma once
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 struct FaviconChangeDetails : public HistoryDetails { 80 struct FaviconChangeDetails : public HistoryDetails {
81 FaviconChangeDetails(); 81 FaviconChangeDetails();
82 virtual ~FaviconChangeDetails(); 82 virtual ~FaviconChangeDetails();
83 83
84 std::set<GURL> urls; 84 std::set<GURL> urls;
85 }; 85 };
86 86
87 // Details for HISTORY_KEYWORD_SEARCH_TERM_UPDATED. 87 // Details for HISTORY_KEYWORD_SEARCH_TERM_UPDATED.
88 struct KeywordSearchTermDetails : public HistoryDetails { 88 struct KeywordSearchTermDetails : public HistoryDetails {
89 KeywordSearchTermDetails(); 89 KeywordSearchTermDetails();
90 ~KeywordSearchTermDetails(); 90 virtual ~KeywordSearchTermDetails();
91 91
92 GURL url; 92 GURL url;
93 TemplateURLID keyword_id; 93 TemplateURLID keyword_id;
94 string16 term; 94 string16 term;
95 }; 95 };
96 96
97 } // namespace history 97 } // namespace history
98 98
99 #endif // CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__ 99 #endif // CHROME_BROWSER_HISTORY_HISTORY_NOTIFICATIONS_H__
OLDNEW
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/history/history_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698