| 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 "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/gfx/native_widget_types.h" | 13 #include "base/gfx/native_widget_types.h" |
| 14 #include "base/gfx/rect.h" | 14 #include "base/gfx/rect.h" |
| 15 #include "base/scoped_ptr.h" |
| 15 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
| 16 // TODO(evanm): I mean really, c'mon, this can't have broken the build, right? | 17 // TODO(evanm): I mean really, c'mon, this can't have broken the build, right? |
| 17 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 18 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
| 18 #include "chrome/browser/tab_contents/constrained_window.h" | 19 #include "chrome/browser/tab_contents/constrained_window.h" |
| 19 #else | 20 #else |
| 20 #include "chrome/common/temp_scaffolding_stubs.h" | 21 #include "chrome/common/temp_scaffolding_stubs.h" |
| 21 #endif | 22 #endif |
| 22 #include "chrome/browser/tab_contents/infobar_delegate.h" | 23 #include "chrome/browser/tab_contents/infobar_delegate.h" |
| 23 #include "chrome/browser/tab_contents/navigation_controller.h" | 24 #include "chrome/browser/tab_contents/navigation_controller.h" |
| 24 #include "chrome/browser/tab_contents/page_navigator.h" | 25 #include "chrome/browser/tab_contents/page_navigator.h" |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 // Delegates for InfoBars associated with this TabContents. | 551 // Delegates for InfoBars associated with this TabContents. |
| 551 std::vector<InfoBarDelegate*> infobar_delegates_; | 552 std::vector<InfoBarDelegate*> infobar_delegates_; |
| 552 | 553 |
| 553 // See getter above. | 554 // See getter above. |
| 554 bool is_being_destroyed_; | 555 bool is_being_destroyed_; |
| 555 | 556 |
| 556 DISALLOW_COPY_AND_ASSIGN(TabContents); | 557 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 557 }; | 558 }; |
| 558 | 559 |
| 559 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 560 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |