1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
#pragma once
#include <set>
#include <string>
#include "base/basictypes.h"
#include "base/string16.h"
#include "content/common/content_export.h"
#include "content/public/browser/navigation_type.h"
#include "content/public/common/page_transition_types.h"
#include "ui/gfx/native_widget_types.h"
#include "webkit/glue/window_open_disposition.h"
class FilePath;
class GURL;
class TabContents;
struct ContextMenuParams;
struct NativeWebKeyboardEvent;
namespace base {
class ListValue;
}
namespace content {
class BrowserContext;
class DownloadItem;
class JavaScriptDialogCreator;
class WebContents;
class WebIntentsDispatcher;
struct FileChooserParams;
struct SSLStatus;
}
namespace gfx {
class Point;
class Rect;
class Size;
}
namespace history {
class HistoryAddPageArgs;
}
namespace webkit_glue {
struct WebIntentData;
}
namespace content {
struct OpenURLParams;
// Objects implement this interface to get notified about changes in the
// TabContents and to provide necessary functionality.
class CONTENT_EXPORT WebContentsDelegate {
public:
WebContentsDelegate();
// Opens a new URL inside the passed in WebContents (if source is 0 open
// in the current front-most tab), unless |disposition| indicates the url
// should be opened in a new tab or window.
//
// A NULL source indicates the current tab (callers should probably use
// OpenURL() for these cases which does it for you).
// Returns the WebContents the URL is opened in, or NULL if the URL wasn't
// opened immediately.
virtual WebContents* OpenURLFromTab(WebContents* source,
const OpenURLParams& params);
// Called to inform the delegate that the tab content's navigation state
// changed. The |changed_flags| indicates the parts of the navigation state
// that have been updated, and is any combination of the
// |TabContents::InvalidateTypes| bits.
virtual void NavigationStateChanged(const TabContents* source,
unsigned changed_flags) {}
// Adds the navigation request headers to |headers|. Use
// net::HttpUtil::AppendHeaderIfMissing to build the set of headers.
virtual void AddNavigationHeaders(const GURL& url, std::string* headers) {}
// Creates a new tab with the already-created TabContents 'new_contents'.
// The window for the added contents should be reparented correctly when this
// method returns. If |disposition| is NEW_POPUP, |pos| should hold the
// initial position.
virtual void AddNewContents(TabContents* source,
TabContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {}
// Selects the specified contents, bringing its container to the front.
virtual void ActivateContents(TabContents* contents) {}
// Deactivates the specified contents by deactivating its container and
// potentialy moving it to the back of the Z order.
virtual void DeactivateContents(TabContents* contents) {}
// Notifies the delegate that this contents is starting or is done loading
// some resource. The delegate should use this notification to represent
// loading feedback. See TabContents::IsLoading()
virtual void LoadingStateChanged(TabContents* source) {}
// Notifies the delegate that the page has made some progress loading.
// |progress| is a value between 0.0 (nothing loaded) to 1.0 (page fully
// loaded).
// Note that to receive this notification, you must have called
// SetReportLoadProgressEnabled(true) in the render view.
virtual void LoadProgressChanged(double progress) {}
// Request the delegate to close this tab contents, and do whatever cleanup
// it needs to do.
virtual void CloseContents(WebContents* source) {}
// Informs the delegate that the underlying RenderViewHost has been swapped
// out so it can perform any cleanup necessary.
virtual void SwappedOut(TabContents* source) {}
// Request the delegate to move this tab contents to the specified position
// in screen coordinates.
virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
// Causes the delegate to detach |source| and clean up any internal data
// pointing to it. After this call ownership of |source| passes to the
// caller, and it is safe to call "source->set_delegate(someone_else);".
virtual void DetachContents(TabContents* source) {}
// Called to determine if the TabContents is contained in a popup window
// or a panel window.
virtual bool IsPopupOrPanel(const TabContents* source) const;
// Notification that the target URL has changed.
virtual void UpdateTargetURL(TabContents* source,
int32 page_id,
const GURL& url) {}
// Notification that there was a mouse event, along with the absolute
// coordinates of the mouse pointer and whether it was a normal motion event
// (otherwise, the pointer left the contents area).
virtual void ContentsMouseEvent(TabContents* source,
const gfx::Point& location,
bool motion) {}
// Request the delegate to change the zoom level of the current tab.
virtual void ContentsZoomChange(bool zoom_in) {}
// Check whether this contents is inside a window dedicated to running a web
// application.
virtual bool IsApplication() const;
// Detach the given tab and convert it to a "webapp" view. The tab must be
// a TabContents with a valid WebApp set.
virtual void ConvertContentsToApplication(TabContents* source) {}
// Whether the specified tab can be reloaded.
// Reloading can be disabled e. g. for the DevTools window.
virtual bool CanReloadContents(TabContents* source) const;
// Invoked prior to showing before unload handler confirmation dialog.
virtual void WillRunBeforeUnloadConfirm() {}
// Returns true if javascript dialogs and unload alerts are suppressed.
// Default is false.
virtual bool ShouldSuppressDialogs();
// Tells us that we've finished firing this tab's beforeunload event.
// The proceed bool tells us whether the user chose to proceed closing the
// tab. Returns true if the tab can continue on firing it's unload event.
// If we're closing the entire browser, then we'll want to delay firing
// unload events until all the beforeunload events have fired.
virtual void BeforeUnloadFired(TabContents* tab,
bool proceed,
bool* proceed_to_fire_unload);
// Sets focus to the location bar or some other place that is appropriate.
// This is called when the tab wants to encourage user input, like for the
// new tab page.
virtual void SetFocusToLocationBar(bool select_all) {}
// Returns whether the page should be focused when transitioning from crashed
// to live. Default is true.
virtual bool ShouldFocusPageAfterCrash();
// Called when a popup select is about to be displayed. The delegate can use
// this to disable inactive rendering for the frame in the window the select
// is opened within if necessary.
virtual void RenderWidgetShowing() {}
// This is called when WebKit tells us that it is done tabbing through
// controls on the page. Provides a way for WebContentsDelegates to handle
// this. Returns true if the delegate successfully handled it.
virtual bool TakeFocus(bool reverse);
// Invoked when the page loses mouse capture.
virtual void LostCapture() {}
// Notification that |tab_contents| has gained focus.
virtual void TabContentsFocused(TabContents* tab_content) {}
// Asks the delegate if the given tab can download.
virtual bool CanDownload(TabContents* source, int request_id);
// Notifies the delegate that a download is starting.
virtual void OnStartDownload(TabContents* source, DownloadItem* download) {}
// Return much extra vertical space should be allotted to the
// render view widget during various animations (e.g. infobar closing).
// This is used to make painting look smoother.
virtual int GetExtraRenderViewHeight() const;
// Returns true if the context menu operation was handled by the delegate.
virtual bool HandleContextMenu(const ContextMenuParams& params);
// Returns true if the context menu command was handled
virtual bool ExecuteContextMenuCommand(int command);
// Shows the page info using the specified information.
// |url| is the url of the page/frame the info applies to, |ssl| is the SSL
// information for that page/frame. If |show_history| is true, a section
// showing how many times that URL has been visited is added to the page info.
virtual void ShowPageInfo(content::BrowserContext* browser_context,
const GURL& url,
const SSLStatus& ssl,
bool show_history) {}
// Opens source view for given tab contents that is navigated to the given
// page url.
virtual void ViewSourceForTab(TabContents* source, const GURL& page_url);
// Opens source view for the given subframe.
virtual void ViewSourceForFrame(TabContents* source,
const GURL& url,
const std::string& content_state);
// Allows delegates to handle keyboard events before sending to the renderer.
// Returns true if the |event| was handled. Otherwise, if the |event| would be
// handled in HandleKeyboardEvent() method as a normal keyboard shortcut,
// |*is_keyboard_shortcut| should be set to true.
virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
bool* is_keyboard_shortcut);
// Allows delegates to handle unhandled keyboard messages coming back from
// the renderer.
virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {}
virtual void HandleMouseDown() {}
virtual void HandleMouseUp() {}
virtual void HandleMouseActivate() {}
// Render view drag n drop ended.
virtual void DragEnded() {}
// Shows the repost form confirmation dialog box.
virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {}
// Allows delegate to override navigation to the history entries.
// Returns true to allow TabContents to continue with the default processing.
virtual bool OnGoToEntryOffset(int offset);
// Returns whether this tab contents should add the specified navigation to
// history.
virtual bool ShouldAddNavigationToHistory(
const history::HistoryAddPageArgs& add_page_args,
NavigationType navigation_type);
// Returns the native window framing the view containing the tab contents.
virtual gfx::NativeWindow GetFrameNativeWindow();
// Notifies the delegate about the creation of a new TabContents. This
// typically happens when popups are created.
virtual void TabContentsCreated(TabContents* new_contents) {}
// Notifies the delegate that the content restrictions for this tab has
// changed.
virtual void ContentRestrictionsChanged(TabContents* source) {}
// Notification that the tab is hung.
virtual void RendererUnresponsive(TabContents* source) {}
// Notification that the tab is no longer hung.
virtual void RendererResponsive(TabContents* source) {}
// Notification that a worker associated with this tab has crashed.
virtual void WorkerCrashed(TabContents* source) {}
// Invoked when a main fram navigation occurs.
virtual void DidNavigateMainFramePostCommit(TabContents* tab) {}
// Invoked when navigating to a pending entry. When invoked the
// NavigationController has configured its pending entry, but it has not yet
// been committed.
virtual void DidNavigateToPendingEntry(TabContents* tab) {}
// Returns a pointer to a service to create JavaScript dialogs. The default
// pointer returned is to a stub service that marks all dialogs as suppressed
// and displays nothing.
virtual JavaScriptDialogCreator* GetJavaScriptDialogCreator();
// Called when a file selection is to be done.
virtual void RunFileChooser(TabContents* tab,
const FileChooserParams& params) {}
// Request to enumerate a directory. This is equivalent to running the file
// chooser in directory-enumeration mode and having the user select the given
// directory.
virtual void EnumerateDirectory(TabContents* tab,
int request_id,
const FilePath& path) {}
// Called when the renderer puts a tab into or out of fullscreen mode.
virtual void ToggleFullscreenModeForTab(TabContents* tab,
bool enter_fullscreen) {}
virtual bool IsFullscreenForTab(const TabContents* tab) const;
// Called when a Javascript out of memory notification is received.
virtual void JSOutOfMemory(TabContents* tab) {}
// Register a new handler for URL requests with the given scheme.
virtual void RegisterProtocolHandler(TabContents* tab,
const std::string& protocol,
const GURL& url,
const string16& title) {}
// Register a new handler for Intents with the given action and type filter.
virtual void RegisterIntentHandler(TabContents* tab,
const string16& action,
const string16& type,
const string16& href,
const string16& title,
const string16& disposition) {}
// Web Intents notification handler. Takes ownership of the
// |intents_dispatcher|.
virtual void WebIntentDispatch(TabContents* tab,
WebIntentsDispatcher* intents_dispatcher);
// Result of string search in the page. This includes the number of matches
// found and the selection rect (in screen coordinates) for the string found.
// If |final_update| is false, it indicates that more results follow.
virtual void FindReply(TabContents* tab,
int request_id,
int number_of_matches,
const gfx::Rect& selection_rect,
int active_match_ordinal,
bool final_update) {}
// Notification that a plugin has crashed.
virtual void CrashedPlugin(TabContents* tab, const FilePath& plugin_path) {}
// Invoked when the preferred size of the contents has been changed.
virtual void UpdatePreferredSize(TabContents* tab,
const gfx::Size& pref_size) {}
// Notification message from HTML UI.
virtual void WebUISend(TabContents* tab,
const GURL& source_url,
const std::string& name,
const base::ListValue& args) {}
// Requests to lock the mouse. Once the request is approved or rejected,
// GotResponseToLockMouseRequest() will be called on the requesting tab
// contents.
virtual void RequestToLockMouse(TabContents* tab) {}
// Notification that the page has lost the mouse lock.
virtual void LostMouseLock() {}
protected:
virtual ~WebContentsDelegate();
private:
friend class ::TabContents;
// Called when |this| becomes the WebContentsDelegate for |source|.
void Attach(TabContents* source);
// Called when |this| is no longer the WebContentsDelegate for |source|.
void Detach(TabContents* source);
// The TabContents that this is currently a delegate for.
std::set<TabContents*> attached_contents_;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
|