OLD | NEW |
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 Loading... |
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 |
OLD | NEW |