Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: public/web/WebView.h

Issue 23726007: Remove old accessibility enums, finish renaming public interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « public/web/WebDocument.h ('k') | public/web/WebViewClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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
OLDNEW
« no previous file with comments | « public/web/WebDocument.h ('k') | public/web/WebViewClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698