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

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: Remove unnecessary include 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
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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 int keyModifiers); 280 int keyModifiers);
281 virtual void spellingMarkers(WebVector<uint32_t>* markers); 281 virtual void spellingMarkers(WebVector<uint32_t>* markers);
282 virtual unsigned long createUniqueIdentifierForRequest(); 282 virtual unsigned long createUniqueIdentifierForRequest();
283 virtual void inspectElementAt(const WebPoint& point); 283 virtual void inspectElementAt(const WebPoint& point);
284 virtual WebString inspectorSettings() const; 284 virtual WebString inspectorSettings() const;
285 virtual void setInspectorSettings(const WebString& settings); 285 virtual void setInspectorSettings(const WebString& settings);
286 virtual bool inspectorSetting(const WebString& key, WebString* value) const; 286 virtual bool inspectorSetting(const WebString& key, WebString* value) const;
287 virtual void setInspectorSetting(const WebString& key, 287 virtual void setInspectorSetting(const WebString& key,
288 const WebString& value); 288 const WebString& value);
289 virtual WebDevToolsAgent* devToolsAgent(); 289 virtual WebDevToolsAgent* devToolsAgent();
290 virtual WebAccessibilityObject accessibilityObject(); 290 virtual WebAXObject accessibilityObject();
291 virtual void applyAutofillSuggestions( 291 virtual void applyAutofillSuggestions(
292 const WebNode&, 292 const WebNode&,
293 const WebVector<WebString>& names, 293 const WebVector<WebString>& names,
294 const WebVector<WebString>& labels, 294 const WebVector<WebString>& labels,
295 const WebVector<WebString>& icons, 295 const WebVector<WebString>& icons,
296 const WebVector<int>& itemIDs, 296 const WebVector<int>& itemIDs,
297 int separatorIndex); 297 int separatorIndex);
298 virtual void hidePopups(); 298 virtual void hidePopups();
299 virtual void selectAutofillSuggestionAtIndex(unsigned listIndex); 299 virtual void selectAutofillSuggestionAtIndex(unsigned listIndex);
300 virtual void setScrollbarColors(unsigned inactiveColor, 300 virtual void setScrollbarColors(unsigned inactiveColor,
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 inline WebViewImpl* toWebViewImpl(WebView* webView) 842 inline WebViewImpl* toWebViewImpl(WebView* webView)
843 { 843 {
844 // We have no ways to check if the specified WebView is an instance of 844 // We have no ways to check if the specified WebView is an instance of
845 // WebViewImpl because WebViewImpl is the only implementation of WebView. 845 // WebViewImpl because WebViewImpl is the only implementation of WebView.
846 return static_cast<WebViewImpl*>(webView); 846 return static_cast<WebViewImpl*>(webView);
847 } 847 }
848 848
849 } // namespace WebKit 849 } // namespace WebKit
850 850
851 #endif 851 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698