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 // 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 25 matching lines...) Expand all Loading... |
36 // The tab contents displaying the actual contents. | 36 // The tab contents displaying the actual contents. |
37 TabContents* tab_contents() const { return tab_contents_.get(); } | 37 TabContents* tab_contents() const { return tab_contents_.get(); } |
38 | 38 |
39 protected: | 39 protected: |
40 // Overridden from View. | 40 // Overridden from View. |
41 virtual bool SkipDefaultKeyEventProcessing(const views::KeyEvent& e); | 41 virtual bool SkipDefaultKeyEventProcessing(const views::KeyEvent& e); |
42 virtual void Focus(); | 42 virtual void Focus(); |
43 virtual void ViewHierarchyChanged(bool is_add, views::View* parent, | 43 virtual void ViewHierarchyChanged(bool is_add, views::View* parent, |
44 views::View* child); | 44 views::View* child); |
45 | 45 |
| 46 void AttachTabContents(); |
| 47 void DetachTabContents(); |
| 48 |
46 // Returns new allocated TabContents instance, caller is responsible deleting. | 49 // Returns new allocated TabContents instance, caller is responsible deleting. |
47 // Override in derived classes to replace TabContents with derivative. | 50 // Override in derived classes to replace TabContents with derivative. |
48 virtual TabContents* CreateTabContents(Profile* profile, | 51 virtual TabContents* CreateTabContents(Profile* profile, |
49 SiteInstance* instance); | 52 SiteInstance* instance); |
50 | 53 |
51 scoped_ptr<TabContents> tab_contents_; | 54 scoped_ptr<TabContents> tab_contents_; |
52 | 55 |
53 private: | 56 private: |
54 bool initialized_; | 57 bool initialized_; |
55 | 58 |
56 DISALLOW_COPY_AND_ASSIGN(DOMView); | 59 DISALLOW_COPY_AND_ASSIGN(DOMView); |
57 }; | 60 }; |
58 | 61 |
59 #endif // CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ | 62 #endif // CHROME_BROWSER_UI_VIEWS_DOM_VIEW_H_ |
OLD | NEW |