Commit 3bb0480b authored by sigbjornf@opera.com's avatar sigbjornf@opera.com

Oilpan: fix build after r175264.

Finalization of ScreenOrientationController now needed, adjust GC class.

R=haraken@chromium.org,ager@chromium.org
BUG=162827
NOTRY=true

Review URL: https://codereview.chromium.org/305363003

git-svn-id: svn://svn.chromium.org/blink/trunk@175274 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 000a951a
...@@ -16,7 +16,9 @@ ...@@ -16,7 +16,9 @@
namespace WebCore { namespace WebCore {
DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScreenOrientationController) ScreenOrientationController::~ScreenOrientationController()
{
}
ScreenOrientationController& ScreenOrientationController::from(Document& document) ScreenOrientationController& ScreenOrientationController::from(Document& document)
{ {
......
...@@ -13,10 +13,11 @@ namespace WebCore { ...@@ -13,10 +13,11 @@ namespace WebCore {
class FrameView; class FrameView;
class ScreenOrientationController FINAL : public NoBaseWillBeGarbageCollected<ScreenOrientationController>, public DocumentSupplement, public PageLifecycleObserver { class ScreenOrientationController FINAL : public NoBaseWillBeGarbageCollectedFinalized<ScreenOrientationController>, public DocumentSupplement, public PageLifecycleObserver {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientationController); WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientationController);
DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(ScreenOrientationController);
public: public:
virtual ~ScreenOrientationController();
blink::WebScreenOrientationType orientation() const; blink::WebScreenOrientationType orientation() const;
// DocumentSupplement API. // DocumentSupplement API.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment