| 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_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 11 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
| 12 #include "chrome/browser/constrained_window.h" | 12 #include "chrome/browser/constrained_window.h" |
| 13 #include "chrome/browser/navigation_controller.h" | 13 #include "chrome/browser/navigation_controller.h" |
| 14 #include "chrome/browser/page_navigator.h" | 14 #include "chrome/browser/page_navigator.h" |
| 15 #include "chrome/browser/tab_contents_type.h" | 15 #include "chrome/browser/tab_contents_type.h" |
| 16 #include "chrome/common/navigation_types.h" | 16 #include "chrome/common/navigation_types.h" |
| 17 #include "chrome/common/text_zoom.h" | |
| 18 | 17 |
| 19 namespace gfx { | 18 namespace gfx { |
| 20 class Rect; | 19 class Rect; |
| 21 class Size; | 20 class Size; |
| 22 } | 21 } |
| 23 | 22 |
| 24 class DOMUIHost; | 23 class DOMUIHost; |
| 25 class DownloadItem; | 24 class DownloadItem; |
| 26 class DownloadShelfView; | 25 class DownloadShelfView; |
| 27 class InfoBarView; | 26 class InfoBarView; |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 | 537 |
| 539 std::wstring encoding_name_; | 538 std::wstring encoding_name_; |
| 540 | 539 |
| 541 // See capturing_contents() above. | 540 // See capturing_contents() above. |
| 542 bool capturing_contents_; | 541 bool capturing_contents_; |
| 543 | 542 |
| 544 DISALLOW_COPY_AND_ASSIGN(TabContents); | 543 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 545 }; | 544 }; |
| 546 | 545 |
| 547 #endif // CHROME_BROWSER_TAB_CONTENTS_H_ | 546 #endif // CHROME_BROWSER_TAB_CONTENTS_H_ |
| OLD | NEW |