| Index: gpu/command_buffer/service/shader_translator.h
|
| diff --git a/gpu/command_buffer/service/shader_translator.h b/gpu/command_buffer/service/shader_translator.h
|
| index b9bacf155e6a2db00edcc48a27a2a6465ac09640..d993967da9b1533e3f3c8af0335a958973dd8640 100644
|
| --- a/gpu/command_buffer/service/shader_translator.h
|
| +++ b/gpu/command_buffer/service/shader_translator.h
|
| @@ -89,8 +89,8 @@ class ShaderTranslatorInterface {
|
| virtual const NameMap& name_map() const = 0;
|
|
|
| // Return a string that is unique for a specfic set of options that would
|
| - // possibly effect compilation.
|
| - virtual std::string GetStringForOptionsThatWouldEffectCompilation() const = 0;
|
| + // possibly affect compilation.
|
| + virtual std::string GetStringForOptionsThatWouldAffectCompilation() const = 0;
|
|
|
| protected:
|
| virtual ~ShaderTranslatorInterface() {}
|
| @@ -135,7 +135,7 @@ class GPU_EXPORT ShaderTranslator
|
| virtual const VariableMap& varying_map() const OVERRIDE;
|
| virtual const NameMap& name_map() const OVERRIDE;
|
|
|
| - virtual std::string GetStringForOptionsThatWouldEffectCompilation() const
|
| + virtual std::string GetStringForOptionsThatWouldAffectCompilation() const
|
| OVERRIDE;
|
|
|
| void AddDestructionObserver(DestructionObserver* observer);
|
|
|