| Index: src/sksl/ir/SkSLExtension.h
 | 
| diff --git a/src/sksl/ir/SkSLExtension.h b/src/sksl/ir/SkSLExtension.h
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..d7f83fad8a9033de8f789093bfddb714f318b428
 | 
| --- /dev/null
 | 
| +++ b/src/sksl/ir/SkSLExtension.h
 | 
| @@ -0,0 +1,34 @@
 | 
| +/*
 | 
| + * Copyright 2016 Google Inc.
 | 
| + *
 | 
| + * Use of this source code is governed by a BSD-style license that can be
 | 
| + * found in the LICENSE file.
 | 
| + */
 | 
| + 
 | 
| +#ifndef SKSL_EXTENSION
 | 
| +#define SKSL_EXTENSION
 | 
| +
 | 
| +#include "SkSLProgramElement.h"
 | 
| +
 | 
| +namespace SkSL {
 | 
| +
 | 
| +/** 
 | 
| + * An extension declaration. 
 | 
| + */
 | 
| +struct Extension : public ProgramElement {
 | 
| +    Extension(Position position, std::string name)
 | 
| +    : INHERITED(position, kExtension_Kind) 
 | 
| +    , fName(std::move(name)) {}
 | 
| +
 | 
| +    std::string description() const override {
 | 
| +        return "#extension " + fName + " : enable";
 | 
| +    }
 | 
| +
 | 
| +    const std::string fName;
 | 
| +
 | 
| +    typedef ProgramElement INHERITED;
 | 
| +};
 | 
| +
 | 
| +} // namespace
 | 
| +
 | 
| +#endif
 | 
| 
 |