| 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_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/gfx/native_widget_types.h" | 9 #include "base/gfx/native_widget_types.h" |
| 10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
| 11 #include "chrome/browser/renderer_preferences.h" | |
| 12 #include "chrome/common/page_transition_types.h" | 11 #include "chrome/common/page_transition_types.h" |
| 12 #include "chrome/common/renderer_preferences.h" |
| 13 #include "webkit/glue/window_open_disposition.h" | 13 #include "webkit/glue/window_open_disposition.h" |
| 14 | 14 |
| 15 class DownloadItem; | 15 class DownloadItem; |
| 16 class ExtensionFunctionDispatcher; | 16 class ExtensionFunctionDispatcher; |
| 17 class RenderViewHost; | 17 class RenderViewHost; |
| 18 class TabContents; | 18 class TabContents; |
| 19 class HtmlDialogUIDelegate; | 19 class HtmlDialogUIDelegate; |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 // Objects implement this interface to get notified about changes in the | 22 // Objects implement this interface to get notified about changes in the |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 // Returns the renderer's current preferences settings. | 183 // Returns the renderer's current preferences settings. |
| 184 RendererPreferences GetRendererPrefs() const { return renderer_preferences_; } | 184 RendererPreferences GetRendererPrefs() const { return renderer_preferences_; } |
| 185 | 185 |
| 186 protected: | 186 protected: |
| 187 ~TabContentsDelegate() {} | 187 ~TabContentsDelegate() {} |
| 188 RendererPreferences renderer_preferences_; | 188 RendererPreferences renderer_preferences_; |
| 189 | 189 |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ | 192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |