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

Side by Side Diff: third_party/WebKit/public/web/WebView.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
« no previous file with comments | « third_party/WebKit/public/web/WebTextDecorationType.h ('k') | no next file » | 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 virtual WebDragOperation dragTargetDragOver( 387 virtual WebDragOperation dragTargetDragOver(
388 const WebPoint& clientPoint, const WebPoint& screenPoint, 388 const WebPoint& clientPoint, const WebPoint& screenPoint,
389 WebDragOperationsMask operationsAllowed, 389 WebDragOperationsMask operationsAllowed,
390 int modifiers) = 0; 390 int modifiers) = 0;
391 virtual void dragTargetDragLeave() = 0; 391 virtual void dragTargetDragLeave() = 0;
392 virtual void dragTargetDrop( 392 virtual void dragTargetDrop(
393 const WebDragData&, 393 const WebDragData&,
394 const WebPoint& clientPoint, const WebPoint& screenPoint, 394 const WebPoint& clientPoint, const WebPoint& screenPoint,
395 int modifiers) = 0; 395 int modifiers) = 0;
396 396
397 // Retrieves a list of spelling markers. 397 // Removes spelling markers from words that have been added to user's custom spellcheck dictionary.
398 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
399 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0; 398 virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& wor ds) = 0;
400 399
401 // Support for resource loading initiated by plugins ------------------- 400 // Support for resource loading initiated by plugins -------------------
402 401
403 // Returns next unused request identifier which is unique within the 402 // Returns next unused request identifier which is unique within the
404 // parent Page. 403 // parent Page.
405 virtual unsigned long createUniqueIdentifierForRequest() = 0; 404 virtual unsigned long createUniqueIdentifierForRequest() = 0;
406 405
407 406
408 // Developer tools ----------------------------------------------------- 407 // Developer tools -----------------------------------------------------
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 // completed. 528 // completed.
530 WebWidget* widget() { return this; } 529 WebWidget* widget() { return this; }
531 530
532 protected: 531 protected:
533 ~WebView() {} 532 ~WebView() {}
534 }; 533 };
535 534
536 } // namespace blink 535 } // namespace blink
537 536
538 #endif 537 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebTextDecorationType.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698