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

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

Issue 1171853002: Remove WebPopupMenu, WebPopupTypeSelect, and WebPopupTypeSuggestion. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months 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/web/WebPopupType.h ('k') | no next file » | 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // WebWidgetClient::show. 84 // WebWidgetClient::show.
85 virtual WebView* createView(WebLocalFrame* creator, 85 virtual WebView* createView(WebLocalFrame* creator,
86 const WebURLRequest& request, 86 const WebURLRequest& request,
87 const WebWindowFeatures& features, 87 const WebWindowFeatures& features,
88 const WebString& name, 88 const WebString& name,
89 WebNavigationPolicy policy, 89 WebNavigationPolicy policy,
90 bool suppressOpener) { 90 bool suppressOpener) {
91 return 0; 91 return 0;
92 } 92 }
93 93
94 // Create a new WebPopupMenu. 94 // Create a new popup WebWidget.
95 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; } 95 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
96 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
97 96
98 // Create a session storage namespace object associated with this WebView. 97 // Create a session storage namespace object associated with this WebView.
99 virtual WebStorageNamespace* createSessionStorageNamespace() { return 0; } 98 virtual WebStorageNamespace* createSessionStorageNamespace() { return 0; }
100 99
101 100
102 // Misc ---------------------------------------------------------------- 101 // Misc ----------------------------------------------------------------
103 102
104 // Called when script in the page calls window.print(). If frame is 103 // Called when script in the page calls window.print(). If frame is
105 // non-null, then it selects a particular frame, including its 104 // non-null, then it selects a particular frame, including its
106 // children, to print. Otherwise, the main frame and its children 105 // children, to print. Otherwise, the main frame and its children
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 // Informs the browser that the draggable regions have been updated. 296 // Informs the browser that the draggable regions have been updated.
298 virtual void draggableRegionsChanged() { } 297 virtual void draggableRegionsChanged() { }
299 298
300 protected: 299 protected:
301 ~WebViewClient() { } 300 ~WebViewClient() { }
302 }; 301 };
303 302
304 } // namespace blink 303 } // namespace blink
305 304
306 #endif 305 #endif
OLDNEW
« no previous file with comments | « public/web/WebPopupType.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698