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 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
| 11 #include "base/gfx/rect.h" |
11 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 12 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
12 #include "chrome/browser/tab_contents/constrained_window.h" | 13 #include "chrome/browser/tab_contents/constrained_window.h" |
13 #include "chrome/browser/tab_contents/infobar_delegate.h" | 14 #include "chrome/browser/tab_contents/infobar_delegate.h" |
14 #include "chrome/browser/tab_contents/navigation_controller.h" | 15 #include "chrome/browser/tab_contents/navigation_controller.h" |
15 #include "chrome/browser/tab_contents/page_navigator.h" | 16 #include "chrome/browser/tab_contents/page_navigator.h" |
16 #include "chrome/browser/tab_contents/tab_contents_type.h" | 17 #include "chrome/browser/tab_contents/tab_contents_type.h" |
17 #include "chrome/common/navigation_types.h" | 18 #include "chrome/common/navigation_types.h" |
18 #include "chrome/common/notification_registrar.h" | 19 #include "chrome/common/notification_registrar.h" |
19 #include "chrome/common/property_bag.h" | 20 #include "chrome/common/property_bag.h" |
20 | 21 |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 // Delegates for InfoBars associated with this TabContents. | 552 // Delegates for InfoBars associated with this TabContents. |
552 std::vector<InfoBarDelegate*> infobar_delegates_; | 553 std::vector<InfoBarDelegate*> infobar_delegates_; |
553 | 554 |
554 // See getter above. | 555 // See getter above. |
555 bool is_being_destroyed_; | 556 bool is_being_destroyed_; |
556 | 557 |
557 DISALLOW_COPY_AND_ASSIGN(TabContents); | 558 DISALLOW_COPY_AND_ASSIGN(TabContents); |
558 }; | 559 }; |
559 | 560 |
560 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 561 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |