blob: e0bfcd9b1f9cf604778b509ff8c9ea19c8ed5723 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MediaQueryBlockWatcher_h
#define MediaQueryBlockWatcher_h
namespace blink {
class MediaQueryToken;
class MediaQueryBlockWatcher {
public:
MediaQueryBlockWatcher();
void handleToken(const MediaQueryToken&);
unsigned blockLevel() const { return m_blockLevel; }
private:
unsigned m_blockLevel;
};
} // namespace
#endif // MediaQueryBlockWatcher_h