OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_INSTANT_INSTANT_PAGE_H_ | 5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_PAGE_H_ |
6 #define CHROME_BROWSER_INSTANT_INSTANT_PAGE_H_ | 6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_PAGE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "chrome/common/instant_types.h" | 13 #include "chrome/common/instant_types.h" |
14 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
15 #include "content/public/common/page_transition_types.h" | 15 #include "content/public/common/page_transition_types.h" |
16 | 16 |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 void OnDeleteMostVisitedItem(uint64 most_visited_item_id); | 229 void OnDeleteMostVisitedItem(uint64 most_visited_item_id); |
230 void OnUndoMostVisitedDeletion(uint64 most_visited_item_id); | 230 void OnUndoMostVisitedDeletion(uint64 most_visited_item_id); |
231 void OnUndoAllMostVisitedDeletions(); | 231 void OnUndoAllMostVisitedDeletions(); |
232 | 232 |
233 Delegate* const delegate_; | 233 Delegate* const delegate_; |
234 bool supports_instant_; | 234 bool supports_instant_; |
235 | 235 |
236 DISALLOW_COPY_AND_ASSIGN(InstantPage); | 236 DISALLOW_COPY_AND_ASSIGN(InstantPage); |
237 }; | 237 }; |
238 | 238 |
239 #endif // CHROME_BROWSER_INSTANT_INSTANT_PAGE_H_ | 239 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_PAGE_H_ |
OLD | NEW |