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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2177023002: Remove spellchecker feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 years, 4 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
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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 const WebPoint& clientPoint, 249 const WebPoint& clientPoint,
250 const WebPoint& screenPoint, 250 const WebPoint& screenPoint,
251 WebDragOperationsMask operationsAllowed, 251 WebDragOperationsMask operationsAllowed,
252 int modifiers) override; 252 int modifiers) override;
253 void dragTargetDragLeave() override; 253 void dragTargetDragLeave() override;
254 void dragTargetDrop( 254 void dragTargetDrop(
255 const WebDragData&, 255 const WebDragData&,
256 const WebPoint& clientPoint, 256 const WebPoint& clientPoint,
257 const WebPoint& screenPoint, 257 const WebPoint& screenPoint,
258 int modifiers) override; 258 int modifiers) override;
259 void spellingMarkers(WebVector<uint32_t>* markers) override;
260 void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) over ride; 259 void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) over ride;
261 unsigned long createUniqueIdentifierForRequest() override; 260 unsigned long createUniqueIdentifierForRequest() override;
262 void enableDeviceEmulation(const WebDeviceEmulationParams&) override; 261 void enableDeviceEmulation(const WebDeviceEmulationParams&) override;
263 void disableDeviceEmulation() override; 262 void disableDeviceEmulation() override;
264 WebAXObject accessibilityObject() override; 263 WebAXObject accessibilityObject() override;
265 void setSelectionColors(unsigned activeBackgroundColor, 264 void setSelectionColors(unsigned activeBackgroundColor,
266 unsigned activeForegroundColor, 265 unsigned activeForegroundColor,
267 unsigned inactiveBackgroundColor, 266 unsigned inactiveBackgroundColor,
268 unsigned inactiveForegroundColor) override; 267 unsigned inactiveForegroundColor) override;
269 void performCustomContextMenuAction(unsigned action) override; 268 void performCustomContextMenuAction(unsigned action) override;
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 778 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
780 }; 779 };
781 780
782 // We have no ways to check if the specified WebView is an instance of 781 // We have no ways to check if the specified WebView is an instance of
783 // WebViewImpl because WebViewImpl is the only implementation of WebView. 782 // WebViewImpl because WebViewImpl is the only implementation of WebView.
784 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 783 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
785 784
786 } // namespace blink 785 } // namespace blink
787 786
788 #endif 787 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebTextCheckingResult.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698