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_TAB_CONTENTS_WRAPPER_H_ | 5 #ifndef CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_WRAPPER_H_ | 6 #define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "chrome/browser/tab_contents/tab_contents.h" | 10 #include "chrome/browser/tab_contents/tab_contents.h" |
11 #include "chrome/browser/tab_contents/web_navigation_observer.h" | 11 #include "chrome/browser/tab_contents/web_navigation_observer.h" |
12 | 12 |
13 class Extension; | 13 class Extension; |
14 class NavigationController; | 14 class NavigationController; |
15 class PasswordManager; | 15 class PasswordManager; |
16 class PasswordManagerDelegate; | 16 class PasswordManagerDelegate; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // outlive the manager, per documentation in password_manager.h. | 69 // outlive the manager, per documentation in password_manager.h. |
70 scoped_ptr<PasswordManagerDelegate> password_manager_delegate_; | 70 scoped_ptr<PasswordManagerDelegate> password_manager_delegate_; |
71 scoped_ptr<PasswordManager> password_manager_; | 71 scoped_ptr<PasswordManager> password_manager_; |
72 | 72 |
73 // The supporting objects need to outlive the TabContents dtor (as they may | 73 // The supporting objects need to outlive the TabContents dtor (as they may |
74 // be called upon during its execution). As a result, this must come last | 74 // be called upon during its execution). As a result, this must come last |
75 // in the list. | 75 // in the list. |
76 scoped_ptr<TabContents> tab_contents_; | 76 scoped_ptr<TabContents> tab_contents_; |
77 }; | 77 }; |
78 | 78 |
79 #endif // CHROME_BROWSER_TAB_CONTENTS_WRAPPER_H_ | 79 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
OLD | NEW |