| 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 // Contains code for managing local HTML UI at chrome:// URLs. | 5 // Contains code for managing local HTML UI at chrome-ui:// URLs. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_DOM_UI_CONTENTS_H__ | 7 #ifndef CHROME_BROWSER_DOM_UI_CONTENTS_H__ |
| 8 #define CHROME_BROWSER_DOM_UI_CONTENTS_H__ | 8 #define CHROME_BROWSER_DOM_UI_CONTENTS_H__ |
| 9 | 9 |
| 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/tab_contents/web_contents.h" | 11 #include "chrome/browser/tab_contents/web_contents.h" |
| 12 #include "webkit/glue/webpreferences.h" | 12 #include "webkit/glue/webpreferences.h" |
| 13 | 13 |
| 14 class DOMUI; | 14 class DOMUI; |
| 15 class render_view_host; | 15 class render_view_host; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 // Return a DOM UI for the provided URL. | 114 // Return a DOM UI for the provided URL. |
| 115 DOMUI* GetDOMUIForURL(const GURL& url); | 115 DOMUI* GetDOMUIForURL(const GURL& url); |
| 116 | 116 |
| 117 // The DOMUI we own and show. | 117 // The DOMUI we own and show. |
| 118 DOMUI* current_ui_; | 118 DOMUI* current_ui_; |
| 119 | 119 |
| 120 DISALLOW_COPY_AND_ASSIGN(DOMUIContents); | 120 DISALLOW_COPY_AND_ASSIGN(DOMUIContents); |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 #endif // CHROME_BROWSER_DOM_UI_CONTENTS_H__ | 123 #endif // CHROME_BROWSER_DOM_UI_CONTENTS_H__ |
| OLD | NEW |