| Index: public/web/WebScopedWindowFocusAllowedIndicator.h
|
| diff --git a/public/web/WebScopedWindowFocusAllowedIndicator.h b/public/web/WebScopedWindowFocusAllowedIndicator.h
|
| index 36cbe9439e6ae87c83e11df1fd27641df0d2e58c..2a020b50233ce4bdcd4e94da2f5dd5748c10e491 100644
|
| --- a/public/web/WebScopedWindowFocusAllowedIndicator.h
|
| +++ b/public/web/WebScopedWindowFocusAllowedIndicator.h
|
| @@ -37,24 +37,16 @@ namespace blink {
|
|
|
| class ScopedWindowFocusAllowedIndicator;
|
| class WebDocument;
|
| -class WindowFocusAllowedIndicator;
|
|
|
| class WebScopedWindowFocusAllowedIndicator {
|
| public:
|
| explicit WebScopedWindowFocusAllowedIndicator(WebDocument* document) { initialize(document); }
|
| - // FIXME: this constructor is now deprecated. It will be removed as part of
|
| - // https://crbug.com/440740
|
| - WebScopedWindowFocusAllowedIndicator() { initialize(); }
|
| ~WebScopedWindowFocusAllowedIndicator() { reset(); }
|
|
|
| private:
|
| BLINK_EXPORT void initialize(WebDocument*);
|
| - BLINK_EXPORT void initialize();
|
| BLINK_EXPORT void reset();
|
|
|
| - // FIXME: m_indicator is now deprecated. It will be removed as part of
|
| - // https://crbug.com/440740
|
| - WebPrivateOwnPtr<WindowFocusAllowedIndicator> m_indicator;
|
| WebPrivateOwnPtr<ScopedWindowFocusAllowedIndicator> m_private;
|
| };
|
|
|
|
|