| 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_HISTORY_UI_H__ | 5 #ifndef CHROME_BROWSER_DOM_UI_HISTORY_UI_H__ |
| 6 #define CHROME_BROWSER_DOM_UI_HISTORY_UI_H__ | 6 #define CHROME_BROWSER_DOM_UI_HISTORY_UI_H__ |
| 7 | 7 |
| 8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
| 9 #include "chrome/browser/browsing_data_remover.h" | 9 #include "chrome/browser/browsing_data_remover.h" |
| 10 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 10 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // Return the URL for the front page of this UI. | 86 // Return the URL for the front page of this UI. |
| 87 static GURL GetBaseURL(); | 87 static GURL GetBaseURL(); |
| 88 | 88 |
| 89 // Return the URL for a given search term. | 89 // Return the URL for a given search term. |
| 90 static const GURL GetHistoryURLWithSearchText(const std::wstring& text); | 90 static const GURL GetHistoryURLWithSearchText(const std::wstring& text); |
| 91 | 91 |
| 92 // DOMUI Implementation | 92 // DOMUI Implementation |
| 93 virtual void Init(); | 93 virtual void Init(); |
| 94 | 94 |
| 95 private: | 95 private: |
| 96 DOMUIContents* contents_; | |
| 97 | 96 |
| 98 DISALLOW_COPY_AND_ASSIGN(HistoryUI); | 97 DISALLOW_COPY_AND_ASSIGN(HistoryUI); |
| 99 }; | 98 }; |
| 100 | 99 |
| 101 #endif // CHROME_BROWSER_DOM_UI_HISTORY_UI_H__ | 100 #endif // CHROME_BROWSER_DOM_UI_HISTORY_UI_H__ |
| OLD | NEW |