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

Side by Side Diff: public/web/WebLocalFrame.h

Issue 988023005: Implementing directional selection strategy in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing review feedback. Created 5 years, 9 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebLocalFrame_h 5 #ifndef WebLocalFrame_h
6 #define WebLocalFrame_h 6 #define WebLocalFrame_h
7 7
8 #include "WebFrame.h" 8 #include "WebFrame.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // Associates an isolated world with human-readable name which is useful for 100 // Associates an isolated world with human-readable name which is useful for
101 // extension debugging. 101 // extension debugging.
102 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString& ) = 0; 102 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString& ) = 0;
103 103
104 104
105 // Selection -------------------------------------------------------------- 105 // Selection --------------------------------------------------------------
106 106
107 // Moves the selection extent point. This function does not allow the 107 // Moves the selection extent point. This function does not allow the
108 // selection to collapse. If the new extent is set to the same position as 108 // selection to collapse. If the new extent is set to the same position as
109 // the current base, this function will do nothing. 109 // the current base, this function will do nothing.
110 virtual void moveRangeSelectionExtent(const WebPoint&, TextGranularity = Cha racterGranularity) = 0; 110 virtual void moveRangeSelectionExtent(const WebPoint&) = 0;
111 111
112 // Content Settings ------------------------------------------------------- 112 // Content Settings -------------------------------------------------------
113 113
114 virtual void setContentSettingsClient(WebContentSettingsClient*) = 0; 114 virtual void setContentSettingsClient(WebContentSettingsClient*) = 0;
115 }; 115 };
116 116
117 } // namespace blink 117 } // namespace blink
118 118
119 #endif // WebLocalFrame_h 119 #endif // WebLocalFrame_h
120 120
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698