OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ |
6 #define CHROME_BROWSER_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ | 6 #define CHROME_BROWSER_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ |
7 | 7 |
8 #include "chrome/browser/views/tab_contents/native_tab_contents_container.h" | 8 #include "chrome/browser/views/tab_contents/native_tab_contents_container.h" |
9 #include "chrome/common/notification_registrar.h" | 9 #include "chrome/common/notification_registrar.h" |
10 #include "views/view.h" | 10 #include "views/view.h" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // An instance of a NativeTabContentsContainer object that holds the native | 66 // An instance of a NativeTabContentsContainer object that holds the native |
67 // view handle associated with the attached TabContents. | 67 // view handle associated with the attached TabContents. |
68 NativeTabContentsContainer* native_container_; | 68 NativeTabContentsContainer* native_container_; |
69 | 69 |
70 // The attached TabContents. | 70 // The attached TabContents. |
71 TabContents* tab_contents_; | 71 TabContents* tab_contents_; |
72 | 72 |
73 // Handles registering for our notifications. | 73 // Handles registering for our notifications. |
74 NotificationRegistrar registrar_; | 74 NotificationRegistrar registrar_; |
75 | 75 |
76 // Storage of the string needed for accessibility. | |
77 std::wstring accessible_name_; | |
78 | |
79 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer); | 76 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer); |
80 }; | 77 }; |
81 | 78 |
82 #endif // CHROME_BROWSER_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ | 79 #endif // CHROME_BROWSER_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ |
OLD | NEW |