• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python
2
3# Copyright 2014 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import sys
8import in_generator
9import make_names
10import media_feature_symbol
11
12
13class MakeMediaFeatureNamesWriter(make_names.MakeNamesWriter):
14    pass
15
16MakeMediaFeatureNamesWriter.filters['symbol'] = media_feature_symbol.getMediaFeatureSymbolWithSuffix('MediaFeature')
17
18if __name__ == "__main__":
19    in_generator.Maker(MakeMediaFeatureNamesWriter).main(sys.argv)
20