| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "WebNavigatorContentUtilsClient.h" | 42 #include "WebNavigatorContentUtilsClient.h" |
| 43 #include "WebPageVisibilityState.h" | 43 #include "WebPageVisibilityState.h" |
| 44 #include "WebPopupType.h" | 44 #include "WebPopupType.h" |
| 45 #include "WebTextAffinity.h" | 45 #include "WebTextAffinity.h" |
| 46 #include "WebTextDirection.h" | 46 #include "WebTextDirection.h" |
| 47 #include "WebWidgetClient.h" | 47 #include "WebWidgetClient.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class WebAXObject; | 51 class WebAXObject; |
| 52 class WebCompositorOutputSurface; | |
| 53 class WebDateTimeChooserCompletion; | 52 class WebDateTimeChooserCompletion; |
| 54 class WebDragData; | 53 class WebDragData; |
| 55 class WebElement; | |
| 56 class WebFileChooserCompletion; | 54 class WebFileChooserCompletion; |
| 57 class WebGestureEvent; | |
| 58 class WebHitTestResult; | 55 class WebHitTestResult; |
| 59 class WebImage; | 56 class WebImage; |
| 60 class WebInputElement; | |
| 61 class WebKeyboardEvent; | |
| 62 class WebNode; | 57 class WebNode; |
| 63 class WebRange; | |
| 64 class WebSpeechRecognizer; | 58 class WebSpeechRecognizer; |
| 65 class WebStorageNamespace; | 59 class WebStorageNamespace; |
| 66 class WebURL; | 60 class WebURL; |
| 67 class WebURLRequest; | 61 class WebURLRequest; |
| 68 class WebView; | 62 class WebView; |
| 69 class WebWidget; | 63 class WebWidget; |
| 70 struct WebConsoleMessage; | |
| 71 struct WebDateTimeChooserParams; | 64 struct WebDateTimeChooserParams; |
| 72 struct WebPoint; | 65 struct WebPoint; |
| 73 struct WebPopupMenuInfo; | 66 struct WebPopupMenuInfo; |
| 74 struct WebRect; | 67 struct WebRect; |
| 75 struct WebSize; | 68 struct WebSize; |
| 76 struct WebWindowFeatures; | 69 struct WebWindowFeatures; |
| 77 | 70 |
| 78 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient. | 71 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient. |
| 79 // Virtual inheritance allows an implementation of WebWidgetClient to be | 72 // Virtual inheritance allows an implementation of WebWidgetClient to be |
| 80 // easily reused as part of an implementation of WebViewClient. | 73 // easily reused as part of an implementation of WebViewClient. |
| (...skipping 219 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 |