| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "chrome/browser/tab_contents/navigation_entry.h" | 27 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 28 #include "chrome/browser/tab_contents/page_navigator.h" | 28 #include "chrome/browser/tab_contents/page_navigator.h" |
| 29 #include "chrome/browser/tab_contents/render_view_host_manager.h" | 29 #include "chrome/browser/tab_contents/render_view_host_manager.h" |
| 30 #include "chrome/browser/tab_contents/tab_specific_content_settings.h" | 30 #include "chrome/browser/tab_contents/tab_specific_content_settings.h" |
| 31 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" | 31 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" |
| 32 #include "chrome/common/notification_registrar.h" | 32 #include "chrome/common/notification_registrar.h" |
| 33 #include "chrome/common/property_bag.h" | 33 #include "chrome/common/property_bag.h" |
| 34 #include "chrome/common/renderer_preferences.h" | 34 #include "chrome/common/renderer_preferences.h" |
| 35 #include "chrome/common/translate_errors.h" | 35 #include "chrome/common/translate_errors.h" |
| 36 #include "chrome/common/web_apps.h" | 36 #include "chrome/common/web_apps.h" |
| 37 #include "gfx/native_widget_types.h" | |
| 38 #include "net/base/load_states.h" | 37 #include "net/base/load_states.h" |
| 38 #include "ui/gfx/native_widget_types.h" |
| 39 | 39 |
| 40 #if defined(OS_WIN) | 40 #if defined(OS_WIN) |
| 41 #include "base/win/scoped_handle.h" | 41 #include "base/win/scoped_handle.h" |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 namespace gfx { | 44 namespace gfx { |
| 45 class Rect; | 45 class Rect; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace history { | 48 namespace history { |
| (...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1248 ObserverList<TabContentsObserver> observers_; | 1248 ObserverList<TabContentsObserver> observers_; |
| 1249 | 1249 |
| 1250 // Content restrictions, used to disable print/copy etc based on content's | 1250 // Content restrictions, used to disable print/copy etc based on content's |
| 1251 // (full-page plugins for now only) permissions. | 1251 // (full-page plugins for now only) permissions. |
| 1252 int content_restrictions_; | 1252 int content_restrictions_; |
| 1253 | 1253 |
| 1254 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1254 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1255 }; | 1255 }; |
| 1256 | 1256 |
| 1257 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1257 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |