Chromium Code Reviews| Index: Source/modules/presentation/NavigatorPresentation.h |
| diff --git a/Source/modules/presentation/NavigatorPresentation.h b/Source/modules/presentation/NavigatorPresentation.h |
| index 52f820138b62cb42ff52e53d0b666257217e9cce..49fa40226b13f56e684bf99321e2ffccbc1b4d06 100644 |
| --- a/Source/modules/presentation/NavigatorPresentation.h |
| +++ b/Source/modules/presentation/NavigatorPresentation.h |
| @@ -5,18 +5,17 @@ |
| #ifndef NavigatorPresentation_h |
| #define NavigatorPresentation_h |
| -#include "core/frame/DOMWindowProperty.h" |
| #include "platform/Supplementable.h" |
| namespace blink { |
| +class LocalFrame; |
|
mark a. foltz
2015/01/26 19:53:38
Forward declaration is not used
|
| class Navigator; |
| class Presentation; |
| class NavigatorPresentation final |
| : public NoBaseWillBeGarbageCollectedFinalized<NavigatorPresentation> |
| - , public WillBeHeapSupplement<Navigator> |
| - , public DOMWindowProperty { |
| + , public WillBeHeapSupplement<Navigator> { |
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorPresentation); |
| public: |
| virtual ~NavigatorPresentation(); |
| @@ -29,7 +28,7 @@ public: |
| private: |
| static const char* supplementName(); |
| - explicit NavigatorPresentation(LocalFrame*); |
| + NavigatorPresentation(); |
| Presentation* presentation(); |