| 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 #ifndef CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ | 5 #ifndef CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ |
| 6 #define CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ | 6 #define CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ |
| 7 | 7 |
| 8 #include "chrome/browser/bookmark_bar_model.h" | 8 #include "chrome/browser/bookmarks/bookmark_bar_model.h" |
| 9 #include "chrome/browser/dom_ui/dom_ui_host.h" | 9 #include "chrome/browser/dom_ui/dom_ui_host.h" |
| 10 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 10 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 11 #include "chrome/browser/history/history.h" | 11 #include "chrome/browser/history/history.h" |
| 12 #include "chrome/browser/tab_restore_service.h" | 12 #include "chrome/browser/tab_restore_service.h" |
| 13 #include "chrome/browser/template_url_model.h" | 13 #include "chrome/browser/template_url_model.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 class Profile; | 16 class Profile; |
| 17 class Value; | 17 class Value; |
| 18 enum TabContentsType; | 18 enum TabContentsType; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 // A pointer to the handler for most visited. | 321 // A pointer to the handler for most visited. |
| 322 // Owned by the DOMUIHost. | 322 // Owned by the DOMUIHost. |
| 323 MostVisitedHandler* most_visited_handler_; | 323 MostVisitedHandler* most_visited_handler_; |
| 324 | 324 |
| 325 DISALLOW_EVIL_CONSTRUCTORS(NewTabUIContents); | 325 DISALLOW_EVIL_CONSTRUCTORS(NewTabUIContents); |
| 326 }; | 326 }; |
| 327 | 327 |
| 328 #endif // CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ | 328 #endif // CHROME_BROWSER_DOM_UI_NEW_TAB_UI_H__ |
| 329 | 329 |
| OLD | NEW |