gecko-dev/layout/style/CSSMediaRule.h
Cameron McCormack 55dcbea002 Bug 1427512 - Part 16: Remove nsIDOMCSSRule. r=xidorn,jryans,bz
MozReview-Commit-ID: GvVdW9w5Cc4
2018-01-11 16:17:56 +08:00

36 lines
997 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_dom_CSSMediaRule_h
#define mozilla_dom_CSSMediaRule_h
#include "mozilla/css/GroupRule.h"
namespace mozilla {
namespace dom {
class CSSMediaRule : public css::ConditionRule
{
protected:
using ConditionRule::ConditionRule;
virtual ~CSSMediaRule() {}
public:
int32_t GetType() const override { return css::Rule::MEDIA_RULE; }
// WebIDL interface
uint16_t Type() const override { return CSSRuleBinding::MEDIA_RULE; }
virtual MediaList* Media() = 0;
JSObject* WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) override;
};
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_CSSMediaRule_h