| Index: third_party/WebKit/Source/core/editing/FrameSelection.h
|
| diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.h b/third_party/WebKit/Source/core/editing/FrameSelection.h
|
| index 3d54e701caca6adf6ac37fff239ec0552ce43090..b8cdb5e144ec881929f4958ea4ae9947a6bd7472 100644
|
| --- a/third_party/WebKit/Source/core/editing/FrameSelection.h
|
| +++ b/third_party/WebKit/Source/core/editing/FrameSelection.h
|
| @@ -204,10 +204,9 @@ class CORE_EXPORT FrameSelection final
|
|
|
| // Focus
|
| bool SelectionHasFocus() const;
|
| - // TODO(hugoh): Rename the following 3 methods to:
|
| - void SetFocused(bool); // SetFrameIsFocused(),
|
| - bool IsFocused() const { return focused_; } // FrameIsFocused(),
|
| - bool IsFocusedAndActive() const; // FrameIsFocusedAndActive().
|
| + void SetFrameIsFocused(bool);
|
| + bool FrameIsFocused() const { return focused_; }
|
| + bool FrameIsFocusedAndActive() const;
|
| void PageActivationChanged();
|
|
|
| void SetUseSecureKeyboardEntryWhenActive(bool);
|
|
|