| 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 "app/gfx/native_widget_types.h" |
| 8 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 9 #include "base/gfx/native_widget_types.h" | |
| 10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
| 11 | |
| 12 #include "chrome/browser/tab_contents/navigation_entry.h" | 11 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 13 #include "chrome/common/native_web_keyboard_event.h" | 12 #include "chrome/common/native_web_keyboard_event.h" |
| 14 #include "chrome/common/page_transition_types.h" | 13 #include "chrome/common/page_transition_types.h" |
| 15 #include "webkit/glue/context_menu.h" | 14 #include "webkit/glue/context_menu.h" |
| 16 #include "webkit/glue/window_open_disposition.h" | 15 #include "webkit/glue/window_open_disposition.h" |
| 17 | 16 |
| 18 class DownloadItem; | 17 class DownloadItem; |
| 19 class ExtensionFunctionDispatcher; | 18 class ExtensionFunctionDispatcher; |
| 20 class GURL; | 19 class GURL; |
| 21 class HtmlDialogUIDelegate; | 20 class HtmlDialogUIDelegate; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 228 |
| 230 // Shows the repost form confirmation dialog box. | 229 // Shows the repost form confirmation dialog box. |
| 231 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} | 230 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} |
| 232 | 231 |
| 233 protected: | 232 protected: |
| 234 ~TabContentsDelegate() {} | 233 ~TabContentsDelegate() {} |
| 235 | 234 |
| 236 }; | 235 }; |
| 237 | 236 |
| 238 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ | 237 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |