OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // DOMView is a ChromeView that displays the content of a web DOM. | 5 // DOMView is a ChromeView that displays the content of a web DOM. |
6 // It should be used with data: URLs. | 6 // It should be used with data: URLs. |
7 | 7 |
8 #ifndef CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ | 8 #ifndef CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ |
9 #define CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ | 9 #define CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ |
10 #pragma once | 10 #pragma once |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 scoped_ptr<TabContentsWrapper> dom_contents_; | 65 scoped_ptr<TabContentsWrapper> dom_contents_; |
66 | 66 |
67 private: | 67 private: |
68 bool initialized_; | 68 bool initialized_; |
69 | 69 |
70 DISALLOW_COPY_AND_ASSIGN(DOMView); | 70 DISALLOW_COPY_AND_ASSIGN(DOMView); |
71 }; | 71 }; |
72 | 72 |
73 #endif // CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ | 73 #endif // CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ |
OLD | NEW |