aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLExtension.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLExtension.h')
-rw-r--r--src/sksl/ir/SkSLExtension.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sksl/ir/SkSLExtension.h b/src/sksl/ir/SkSLExtension.h
index ea5e0445e3..70dc6b3eaf 100644
--- a/src/sksl/ir/SkSLExtension.h
+++ b/src/sksl/ir/SkSLExtension.h
@@ -4,7 +4,7 @@
* 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
@@ -12,19 +12,19 @@
namespace SkSL {
-/**
- * An extension declaration.
+/**
+ * An extension declaration.
*/
struct Extension : public ProgramElement {
- Extension(Position position, SkString name)
- : INHERITED(position, kExtension_Kind)
+ Extension(Position position, String name)
+ : INHERITED(position, kExtension_Kind)
, fName(std::move(name)) {}
- SkString description() const override {
+ String description() const override {
return "#extension " + fName + " : enable";
}
- const SkString fName;
+ const String fName;
typedef ProgramElement INHERITED;
};