OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "chrome/browser/automation/automation_resource_routing_delegate.h" | 12 #include "chrome/browser/automation/automation_resource_routing_delegate.h" |
13 #include "chrome/browser/tab_contents/navigation_entry.h" | 13 #include "chrome/browser/tab_contents/navigation_entry.h" |
14 #include "chrome/common/content_settings_types.h" | 14 #include "chrome/common/content_settings_types.h" |
15 #include "chrome/common/native_web_keyboard_event.h" | 15 #include "chrome/common/native_web_keyboard_event.h" |
16 #include "chrome/common/page_transition_types.h" | 16 #include "chrome/common/page_transition_types.h" |
17 #include "gfx/native_widget_types.h" | 17 #include "gfx/native_widget_types.h" |
18 #include "gfx/rect.h" | 18 #include "gfx/rect.h" |
19 #include "webkit/glue/context_menu.h" | 19 #include "webkit/glue/context_menu.h" |
20 #include "webkit/glue/window_open_disposition.h" | 20 #include "webkit/glue/window_open_disposition.h" |
21 | 21 |
22 class Browser; | |
23 class DownloadItem; | 22 class DownloadItem; |
24 class ExtensionFunctionDispatcher; | 23 class ExtensionFunctionDispatcher; |
25 class GURL; | 24 class GURL; |
26 class HtmlDialogUIDelegate; | 25 class HtmlDialogUIDelegate; |
27 class Profile; | 26 class Profile; |
28 class RenderViewHost; | 27 class RenderViewHost; |
29 class TabContents; | 28 class TabContents; |
30 class TemplateURL; | 29 class TemplateURL; |
31 | 30 |
32 namespace webkit_glue { | 31 namespace webkit_glue { |
(...skipping 208 matching lines...) Loading... |
241 // Returns true to allow TabContents to continue with the default processing. | 240 // Returns true to allow TabContents to continue with the default processing. |
242 virtual bool OnGoToEntryOffset(int offset); | 241 virtual bool OnGoToEntryOffset(int offset); |
243 | 242 |
244 // Returns whether this tab contents should add navigations to history. | 243 // Returns whether this tab contents should add navigations to history. |
245 virtual bool ShouldAddNavigationsToHistory() const; | 244 virtual bool ShouldAddNavigationsToHistory() const; |
246 | 245 |
247 // Notification when web app info data is available | 246 // Notification when web app info data is available |
248 virtual void OnDidGetApplicationInfo(TabContents* tab_contents, | 247 virtual void OnDidGetApplicationInfo(TabContents* tab_contents, |
249 int32 page_id); | 248 int32 page_id); |
250 | 249 |
251 // Returns the browser in which the tab contents is being displayed. | |
252 virtual Browser* GetBrowser(); | |
253 | |
254 // Returns the native window framing the view containing the tab contents. | 250 // Returns the native window framing the view containing the tab contents. |
255 virtual gfx::NativeWindow GetFrameNativeWindow(); | 251 virtual gfx::NativeWindow GetFrameNativeWindow(); |
256 | 252 |
257 // Notifies the delegate about the creation of a new TabContents. This | 253 // Notifies the delegate about the creation of a new TabContents. This |
258 // typically happens when popups are created. | 254 // typically happens when popups are created. |
259 virtual void TabContentsCreated(TabContents* new_contents); | 255 virtual void TabContentsCreated(TabContents* new_contents); |
260 | 256 |
261 // Returns whether infobars are enabled. Overrideable by child classes. | 257 // Returns whether infobars are enabled. Overrideable by child classes. |
262 virtual bool infobars_enabled(); | 258 virtual bool infobars_enabled(); |
263 | 259 |
(...skipping 10 matching lines...) Loading... |
274 // Notifies the delegate that something has changed about what content the | 270 // Notifies the delegate that something has changed about what content the |
275 // TabContents is displaying. Currently this is only fired when displaying | 271 // TabContents is displaying. Currently this is only fired when displaying |
276 // PDF using the internal PDF plugin. | 272 // PDF using the internal PDF plugin. |
277 virtual void ContentTypeChanged(TabContents* source); | 273 virtual void ContentTypeChanged(TabContents* source); |
278 | 274 |
279 protected: | 275 protected: |
280 virtual ~TabContentsDelegate(); | 276 virtual ~TabContentsDelegate(); |
281 }; | 277 }; |
282 | 278 |
283 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ | 279 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ |
OLD | NEW |