Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: public/web/WebViewClient.h

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « public/platform/WebWorkerRunLoop.h ('k') | public/web/WebWidget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // WebWidgetClient::show. 92 // WebWidgetClient::show.
93 virtual WebView* createView(WebLocalFrame* creator, 93 virtual WebView* createView(WebLocalFrame* creator,
94 const WebURLRequest& request, 94 const WebURLRequest& request,
95 const WebWindowFeatures& features, 95 const WebWindowFeatures& features,
96 const WebString& name, 96 const WebString& name,
97 WebNavigationPolicy policy, 97 WebNavigationPolicy policy,
98 bool suppressOpener) { 98 bool suppressOpener) {
99 return 0; 99 return 0;
100 } 100 }
101 101
102 // Create a new WebPopupMenu. 102 virtual size_t compositorId() const { return 0; }
103
104 // Create a new WebPopupMenu. In the second form, the client is
105 // responsible for rendering the contents of the popup menu.
103 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; } 106 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
104 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; } 107 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
105 108
106 // Create a session storage namespace object associated with this WebView. 109 // Create a session storage namespace object associated with this WebView.
107 virtual WebStorageNamespace* createSessionStorageNamespace() { return 0; } 110 virtual WebStorageNamespace* createSessionStorageNamespace() { return 0; }
108 111
109 112
110 // Misc ---------------------------------------------------------------- 113 // Misc ----------------------------------------------------------------
111 114
112 // Called when script in the page calls window.print(). If frame is 115 // Called when script in the page calls window.print(). If frame is
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // Informs the browser that the draggable regions have been updated. 309 // Informs the browser that the draggable regions have been updated.
307 virtual void draggableRegionsChanged() { } 310 virtual void draggableRegionsChanged() { }
308 311
309 protected: 312 protected:
310 ~WebViewClient() { } 313 ~WebViewClient() { }
311 }; 314 };
312 315
313 } // namespace blink 316 } // namespace blink
314 317
315 #endif 318 #endif
OLDNEW
« no previous file with comments | « public/platform/WebWorkerRunLoop.h ('k') | public/web/WebWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698