| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |