Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: chrome/browser/ui/tab_contents/tab_contents_wrapper.h

Issue 5582002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/status_bubble.h ('k') | chrome/browser/ui/tab_contents/tab_contents_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698