| 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_DOWNLOADS_UI_H_ | 5 #ifndef CHROME_BROWSER_DOM_UI_DOWNLOADS_UI_H_ |
| 6 #define CHROME_BROWSER_DOM_UI_DOWNLOADS_UI_H_ | 6 #define CHROME_BROWSER_DOM_UI_DOWNLOADS_UI_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 8 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 9 #include "chrome/browser/dom_ui/dom_ui.h" | 9 #include "chrome/browser/dom_ui/dom_ui.h" |
| 10 #include "chrome/browser/dom_ui/dom_ui_contents.h" | 10 #include "chrome/browser/dom_ui/dom_ui_contents.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 public: | 107 public: |
| 108 explicit DownloadsUI(DOMUIContents* contents); | 108 explicit DownloadsUI(DOMUIContents* contents); |
| 109 | 109 |
| 110 // Return the URL for the front page of this UI. | 110 // Return the URL for the front page of this UI. |
| 111 static GURL GetBaseURL(); | 111 static GURL GetBaseURL(); |
| 112 | 112 |
| 113 // DOMUI Implementation | 113 // DOMUI Implementation |
| 114 virtual void Init(); | 114 virtual void Init(); |
| 115 | 115 |
| 116 private: | 116 private: |
| 117 DOMUIContents* contents_; | |
| 118 | 117 |
| 119 DISALLOW_COPY_AND_ASSIGN(DownloadsUI); | 118 DISALLOW_COPY_AND_ASSIGN(DownloadsUI); |
| 120 }; | 119 }; |
| 121 | 120 |
| 122 #endif // CHROME_BROWSER_DOM_UI_DOWNLOADS_UI_H_ | 121 #endif // CHROME_BROWSER_DOM_UI_DOWNLOADS_UI_H_ |
| 123 | 122 |
| OLD | NEW |