| OLD | NEW |
| 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 Loading... |
| 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__ |
| OLD | NEW |