| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011, 2012 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "../platform/WebColor.h" | 34 #include "../platform/WebColor.h" |
| 35 #include "../platform/WebString.h" | 35 #include "../platform/WebString.h" |
| 36 #include "../platform/WebVector.h" | 36 #include "../platform/WebVector.h" |
| 37 #include "WebDragOperation.h" | 37 #include "WebDragOperation.h" |
| 38 #include "WebPageVisibilityState.h" | 38 #include "WebPageVisibilityState.h" |
| 39 #include "WebWidget.h" | 39 #include "WebWidget.h" |
| 40 | 40 |
| 41 namespace WebKit { | 41 namespace WebKit { |
| 42 | 42 |
| 43 class WebAccessibilityObject; | 43 class WebAXObject; |
| 44 class WebAutofillClient; | 44 class WebAutofillClient; |
| 45 class WebDevToolsAgent; | 45 class WebDevToolsAgent; |
| 46 class WebDevToolsAgentClient; | 46 class WebDevToolsAgentClient; |
| 47 class WebDragData; | 47 class WebDragData; |
| 48 class WebFrame; | 48 class WebFrame; |
| 49 class WebFrameClient; | 49 class WebFrameClient; |
| 50 class WebGraphicsContext3D; | 50 class WebGraphicsContext3D; |
| 51 class WebHitTestResult; | 51 class WebHitTestResult; |
| 52 class WebNode; | 52 class WebNode; |
| 53 class WebPageOverlay; | 53 class WebPageOverlay; |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 const WebString& value) = 0; | 402 const WebString& value) = 0; |
| 403 | 403 |
| 404 // The embedder may optionally engage a WebDevToolsAgent. This may only | 404 // The embedder may optionally engage a WebDevToolsAgent. This may only |
| 405 // be set once per WebView. | 405 // be set once per WebView. |
| 406 virtual WebDevToolsAgent* devToolsAgent() = 0; | 406 virtual WebDevToolsAgent* devToolsAgent() = 0; |
| 407 | 407 |
| 408 | 408 |
| 409 // Accessibility ------------------------------------------------------- | 409 // Accessibility ------------------------------------------------------- |
| 410 | 410 |
| 411 // Returns the accessibility object for this view. | 411 // Returns the accessibility object for this view. |
| 412 virtual WebAccessibilityObject accessibilityObject() = 0; | 412 virtual WebAXObject accessibilityObject() = 0; |
| 413 | 413 |
| 414 | 414 |
| 415 // Autofill ----------------------------------------------------------- | 415 // Autofill ----------------------------------------------------------- |
| 416 | 416 |
| 417 // Notifies the WebView that Autofill suggestions are available for a node. | 417 // Notifies the WebView that Autofill suggestions are available for a node. |
| 418 // |itemIDs| is a vector of IDs for the menu items. A positive itemID is a | 418 // |itemIDs| is a vector of IDs for the menu items. A positive itemID is a |
| 419 // unique ID for the Autofill entries. Other MenuItemIDs are defined in | 419 // unique ID for the Autofill entries. Other MenuItemIDs are defined in |
| 420 // WebAutofillClient.h | 420 // WebAutofillClient.h |
| 421 virtual void applyAutofillSuggestions( | 421 virtual void applyAutofillSuggestions( |
| 422 const WebNode&, | 422 const WebNode&, |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 | 518 |
| 519 // Testing functionality for TestRunner --------------------------------- | 519 // Testing functionality for TestRunner --------------------------------- |
| 520 | 520 |
| 521 protected: | 521 protected: |
| 522 ~WebView() {} | 522 ~WebView() {} |
| 523 }; | 523 }; |
| 524 | 524 |
| 525 } // namespace WebKit | 525 } // namespace WebKit |
| 526 | 526 |
| 527 #endif | 527 #endif |
| OLD | NEW |