| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 class WebDragData; | 54 class WebDragData; |
| 55 class WebElement; | 55 class WebElement; |
| 56 class WebFileChooserCompletion; | 56 class WebFileChooserCompletion; |
| 57 class WebGestureEvent; | 57 class WebGestureEvent; |
| 58 class WebHitTestResult; | 58 class WebHitTestResult; |
| 59 class WebImage; | 59 class WebImage; |
| 60 class WebInputElement; | 60 class WebInputElement; |
| 61 class WebKeyboardEvent; | 61 class WebKeyboardEvent; |
| 62 class WebNode; | 62 class WebNode; |
| 63 class WebRange; | 63 class WebRange; |
| 64 class WebSpeechRecognizer; | |
| 65 class WebStorageNamespace; | 64 class WebStorageNamespace; |
| 66 class WebURL; | 65 class WebURL; |
| 67 class WebURLRequest; | 66 class WebURLRequest; |
| 68 class WebView; | 67 class WebView; |
| 69 class WebWidget; | 68 class WebWidget; |
| 70 struct WebConsoleMessage; | 69 struct WebConsoleMessage; |
| 71 struct WebDateTimeChooserParams; | 70 struct WebDateTimeChooserParams; |
| 72 struct WebPoint; | 71 struct WebPoint; |
| 73 struct WebPopupMenuInfo; | 72 struct WebPopupMenuInfo; |
| 74 struct WebRect; | 73 struct WebRect; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 230 |
| 232 // Developer tools ----------------------------------------------------- | 231 // Developer tools ----------------------------------------------------- |
| 233 | 232 |
| 234 // Called to notify the client that the inspector's settings were | 233 // Called to notify the client that the inspector's settings were |
| 235 // changed and should be saved. See WebView::inspectorSettings. | 234 // changed and should be saved. See WebView::inspectorSettings. |
| 236 virtual void didUpdateInspectorSettings() { } | 235 virtual void didUpdateInspectorSettings() { } |
| 237 | 236 |
| 238 virtual void didUpdateInspectorSetting(const WebString& key, const WebString
& value) { } | 237 virtual void didUpdateInspectorSetting(const WebString& key, const WebString
& value) { } |
| 239 | 238 |
| 240 | 239 |
| 241 // Speech -------------------------------------------------------------- | |
| 242 | |
| 243 // Access the embedder API for speech recognition services. | |
| 244 virtual WebSpeechRecognizer* speechRecognizer() { return 0; } | |
| 245 | |
| 246 | |
| 247 // Zoom ---------------------------------------------------------------- | 240 // Zoom ---------------------------------------------------------------- |
| 248 | 241 |
| 249 // Informs the browser that the zoom levels for this frame have changed from | 242 // Informs the browser that the zoom levels for this frame have changed from |
| 250 // the default values. | 243 // the default values. |
| 251 virtual void zoomLimitsChanged(double minimumLevel, double maximumLevel) { } | 244 virtual void zoomLimitsChanged(double minimumLevel, double maximumLevel) { } |
| 252 | 245 |
| 253 // Informs the browser that the zoom level has changed as a result of an | 246 // Informs the browser that the zoom level has changed as a result of an |
| 254 // action that wasn't initiated by the client. | 247 // action that wasn't initiated by the client. |
| 255 virtual void zoomLevelChanged() { } | 248 virtual void zoomLevelChanged() { } |
| 256 | 249 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 // Informs the browser that the draggable regions have been updated. | 293 // Informs the browser that the draggable regions have been updated. |
| 301 virtual void draggableRegionsChanged() { } | 294 virtual void draggableRegionsChanged() { } |
| 302 | 295 |
| 303 protected: | 296 protected: |
| 304 ~WebViewClient() { } | 297 ~WebViewClient() { } |
| 305 }; | 298 }; |
| 306 | 299 |
| 307 } // namespace blink | 300 } // namespace blink |
| 308 | 301 |
| 309 #endif | 302 #endif |
| OLD | NEW |