| Index: third_party/WebKit/Source/core/css/MediaQueryList.h
|
| diff --git a/third_party/WebKit/Source/core/css/MediaQueryList.h b/third_party/WebKit/Source/core/css/MediaQueryList.h
|
| index 08184d4258cbb4fcb86cc9e547c0ef7e329e8e2c..8a0d6ba8e43a993cd4090aa80d3b87f351e3bbb8 100644
|
| --- a/third_party/WebKit/Source/core/css/MediaQueryList.h
|
| +++ b/third_party/WebKit/Source/core/css/MediaQueryList.h
|
| @@ -35,10 +35,11 @@ class MediaQueryListListener;
|
| class MediaQueryMatcher;
|
| class MediaQuerySet;
|
|
|
| -// MediaQueryList interface is specified at http://dev.w3.org/csswg/cssom-view/#the-mediaquerylist-interface
|
| -// The objects of this class are returned by window.matchMedia. They may be used to
|
| -// retrieve the current value of the given media query and to add/remove listeners that
|
| -// will be called whenever the value of the query changes.
|
| +// MediaQueryList interface is specified at
|
| +// http://dev.w3.org/csswg/cssom-view/#the-mediaquerylist-interface
|
| +// The objects of this class are returned by window.matchMedia. They may be used
|
| +// to retrieve the current value of the given media query and to add/remove
|
| +// listeners that will be called whenever the value of the query changes.
|
|
|
| class CORE_EXPORT MediaQueryList final : public EventTargetWithInlineData,
|
| public ActiveScriptWrappable,
|
| @@ -63,7 +64,8 @@ class CORE_EXPORT MediaQueryList final : public EventTargetWithInlineData,
|
| void addDeprecatedListener(EventListener*);
|
| void removeDeprecatedListener(EventListener*);
|
|
|
| - // C++ code can use these functions to listen to changes instead of having to use DOM event listeners.
|
| + // C++ code can use these functions to listen to changes instead of having to
|
| + // use DOM event listeners.
|
| void addListener(MediaQueryListListener*);
|
| void removeListener(MediaQueryListListener*);
|
|
|
|
|