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

Side by Side Diff: Source/web/WebViewImpl.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 | « Source/web/WebDocument.cpp ('k') | Source/web/WebViewImpl.cpp » ('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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 class DeviceOrientationClientProxy; 95 class DeviceOrientationClientProxy;
96 class GeolocationClientProxy; 96 class GeolocationClientProxy;
97 class LinkHighlight; 97 class LinkHighlight;
98 class MIDIClientProxy; 98 class MIDIClientProxy;
99 class PinchViewports; 99 class PinchViewports;
100 class PrerendererClientImpl; 100 class PrerendererClientImpl;
101 class SpeechInputClientImpl; 101 class SpeechInputClientImpl;
102 class SpeechRecognitionClientProxy; 102 class SpeechRecognitionClientProxy;
103 class UserMediaClientImpl; 103 class UserMediaClientImpl;
104 class ValidationMessageClientImpl; 104 class ValidationMessageClientImpl;
105 class WebAccessibilityObject; 105 class WebAXObject;
106 class WebActiveGestureAnimation; 106 class WebActiveGestureAnimation;
107 class WebCompositorImpl; 107 class WebCompositorImpl;
108 class WebDevToolsAgentClient; 108 class WebDevToolsAgentClient;
109 class WebDevToolsAgentPrivate; 109 class WebDevToolsAgentPrivate;
110 class WebDocument; 110 class WebDocument;
111 class WebFrameImpl; 111 class WebFrameImpl;
112 class WebGestureEvent; 112 class WebGestureEvent;
113 class WebHelperPluginImpl; 113 class WebHelperPluginImpl;
114 class WebImage; 114 class WebImage;
115 class WebKeyboardEvent; 115 class WebKeyboardEvent;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 int keyModifiers); 283 int keyModifiers);
284 virtual void spellingMarkers(WebVector<uint32_t>* markers); 284 virtual void spellingMarkers(WebVector<uint32_t>* markers);
285 virtual unsigned long createUniqueIdentifierForRequest(); 285 virtual unsigned long createUniqueIdentifierForRequest();
286 virtual void inspectElementAt(const WebPoint& point); 286 virtual void inspectElementAt(const WebPoint& point);
287 virtual WebString inspectorSettings() const; 287 virtual WebString inspectorSettings() const;
288 virtual void setInspectorSettings(const WebString& settings); 288 virtual void setInspectorSettings(const WebString& settings);
289 virtual bool inspectorSetting(const WebString& key, WebString* value) const; 289 virtual bool inspectorSetting(const WebString& key, WebString* value) const;
290 virtual void setInspectorSetting(const WebString& key, 290 virtual void setInspectorSetting(const WebString& key,
291 const WebString& value); 291 const WebString& value);
292 virtual WebDevToolsAgent* devToolsAgent(); 292 virtual WebDevToolsAgent* devToolsAgent();
293 virtual WebAccessibilityObject accessibilityObject(); 293 virtual WebAXObject accessibilityObject();
294 virtual void applyAutofillSuggestions( 294 virtual void applyAutofillSuggestions(
295 const WebNode&, 295 const WebNode&,
296 const WebVector<WebString>& names, 296 const WebVector<WebString>& names,
297 const WebVector<WebString>& labels, 297 const WebVector<WebString>& labels,
298 const WebVector<WebString>& icons, 298 const WebVector<WebString>& icons,
299 const WebVector<int>& itemIDs, 299 const WebVector<int>& itemIDs,
300 int separatorIndex); 300 int separatorIndex);
301 virtual void hidePopups(); 301 virtual void hidePopups();
302 virtual void selectAutofillSuggestionAtIndex(unsigned listIndex); 302 virtual void selectAutofillSuggestionAtIndex(unsigned listIndex);
303 virtual void setScrollbarColors(unsigned inactiveColor, 303 virtual void setScrollbarColors(unsigned inactiveColor,
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 inline WebViewImpl* toWebViewImpl(WebView* webView) 827 inline WebViewImpl* toWebViewImpl(WebView* webView)
828 { 828 {
829 // We have no ways to check if the specified WebView is an instance of 829 // We have no ways to check if the specified WebView is an instance of
830 // WebViewImpl because WebViewImpl is the only implementation of WebView. 830 // WebViewImpl because WebViewImpl is the only implementation of WebView.
831 return static_cast<WebViewImpl*>(webView); 831 return static_cast<WebViewImpl*>(webView);
832 } 832 }
833 833
834 } // namespace WebKit 834 } // namespace WebKit
835 835
836 #endif 836 #endif
OLDNEW
« no previous file with comments | « Source/web/WebDocument.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698