| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |