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

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

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)
Patch Set: Add more comments Created 3 years, 11 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 const WebPoint& extent, 197 const WebPoint& extent,
198 WebFrame::TextGranularity = CharacterGranularity) override; 198 WebFrame::TextGranularity = CharacterGranularity) override;
199 void moveCaretSelection(const WebPoint&) override; 199 void moveCaretSelection(const WebPoint&) override;
200 bool setEditableSelectionOffsets(int start, int end) override; 200 bool setEditableSelectionOffsets(int start, int end) override;
201 bool setCompositionFromExistingText( 201 bool setCompositionFromExistingText(
202 int compositionStart, 202 int compositionStart,
203 int compositionEnd, 203 int compositionEnd,
204 const WebVector<WebCompositionUnderline>& underlines) override; 204 const WebVector<WebCompositionUnderline>& underlines) override;
205 void extendSelectionAndDelete(int before, int after) override; 205 void extendSelectionAndDelete(int before, int after) override;
206 void deleteSurroundingText(int before, int after) override; 206 void deleteSurroundingText(int before, int after) override;
207 void deleteSurroundingTextInCodePoints(int before, int after) override;
207 void setCaretVisible(bool) override; 208 void setCaretVisible(bool) override;
208 int printBegin(const WebPrintParams&, 209 int printBegin(const WebPrintParams&,
209 const WebNode& constrainToNode) override; 210 const WebNode& constrainToNode) override;
210 float printPage(int pageToPrint, WebCanvas*) override; 211 float printPage(int pageToPrint, WebCanvas*) override;
211 float getPrintPageShrink(int page) override; 212 float getPrintPageShrink(int page) override;
212 void printEnd() override; 213 void printEnd() override;
213 bool isPrintScalingDisabledForPlugin(const WebNode&) override; 214 bool isPrintScalingDisabledForPlugin(const WebNode&) override;
214 bool getPrintPresetOptionsForPlugin(const WebNode&, 215 bool getPrintPresetOptionsForPlugin(const WebNode&,
215 WebPrintPresetOptions*) override; 216 WebPrintPresetOptions*) override;
216 bool hasCustomPageSizeStyle(int pageIndex) override; 217 bool hasCustomPageSizeStyle(int pageIndex) override;
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 480
480 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 481 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
481 WebFrame, 482 WebFrame,
482 frame, 483 frame,
483 frame->isWebLocalFrame(), 484 frame->isWebLocalFrame(),
484 frame.isWebLocalFrame()); 485 frame.isWebLocalFrame());
485 486
486 } // namespace blink 487 } // namespace blink
487 488
488 #endif 489 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698