| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebView_h | 31 #ifndef WebView_h |
| 32 #define WebView_h | 32 #define WebView_h |
| 33 | 33 |
| 34 #include "WebDragOperation.h" | 34 #include "WebDragOperation.h" |
| 35 #include "WebWidget.h" | 35 #include "WebWidget.h" |
| 36 | 36 |
| 37 namespace WebKit { | 37 namespace WebKit { |
| 38 class WebAccessibilityObject; | 38 class WebAccessibilityObject; |
| 39 class WebDevToolsAgent; |
| 39 class WebDragData; | 40 class WebDragData; |
| 40 class WebFrame; | 41 class WebFrame; |
| 41 class WebFrameClient; | 42 class WebFrameClient; |
| 42 class WebNode; | 43 class WebNode; |
| 43 class WebSettings; | 44 class WebSettings; |
| 44 class WebString; | 45 class WebString; |
| 45 class WebViewClient; | 46 class WebViewClient; |
| 46 struct WebMediaPlayerAction; | 47 struct WebMediaPlayerAction; |
| 47 struct WebPoint; | 48 struct WebPoint; |
| 48 template <typename T> class WebVector; | 49 template <typename T> class WebVector; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 | 197 |
| 197 // Inspect a particular point in the WebView. (x = -1 || y = -1) is a | 198 // Inspect a particular point in the WebView. (x = -1 || y = -1) is a |
| 198 // special case, meaning inspect the current page and not a specific | 199 // special case, meaning inspect the current page and not a specific |
| 199 // point. | 200 // point. |
| 200 virtual void inspectElementAt(const WebPoint&) = 0; | 201 virtual void inspectElementAt(const WebPoint&) = 0; |
| 201 | 202 |
| 202 // Settings used by the inspector. | 203 // Settings used by the inspector. |
| 203 virtual WebString inspectorSettings() const = 0; | 204 virtual WebString inspectorSettings() const = 0; |
| 204 virtual void setInspectorSettings(const WebString&) = 0; | 205 virtual void setInspectorSettings(const WebString&) = 0; |
| 205 | 206 |
| 207 virtual WebDevToolsAgent* devToolsAgent() = 0; |
| 208 |
| 206 | 209 |
| 207 // Accessibility ------------------------------------------------------- | 210 // Accessibility ------------------------------------------------------- |
| 208 | 211 |
| 209 // Returns the accessibility object for this view. | 212 // Returns the accessibility object for this view. |
| 210 virtual WebAccessibilityObject accessibilityObject() = 0; | 213 virtual WebAccessibilityObject accessibilityObject() = 0; |
| 211 | 214 |
| 212 | 215 |
| 213 // Autofill ------------------------------------------------------------ | 216 // Autofill ------------------------------------------------------------ |
| 214 | 217 |
| 215 // Notifies the WebView that autofill suggestions are available for a node. | 218 // Notifies the WebView that autofill suggestions are available for a node. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 227 // AutofillSuggestionsForNode | 230 // AutofillSuggestionsForNode |
| 228 // HideAutofillPopup | 231 // HideAutofillPopup |
| 229 | 232 |
| 230 protected: | 233 protected: |
| 231 ~WebView() {} | 234 ~WebView() {} |
| 232 }; | 235 }; |
| 233 | 236 |
| 234 } // namespace WebKit | 237 } // namespace WebKit |
| 235 | 238 |
| 236 #endif | 239 #endif |
| OLD | NEW |