| Index: third_party/WebKit/Source/build/scripts/templates/SettingsMacros.h.tmpl | 
| diff --git a/third_party/WebKit/Source/build/scripts/templates/SettingsMacros.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/SettingsMacros.h.tmpl | 
| index b97ad0c742f24eb88419745a3823c7d18a818e3b..d49387c97232ab1aa11f2bfd956d5d17c8714e1e 100644 | 
| --- a/third_party/WebKit/Source/build/scripts/templates/SettingsMacros.h.tmpl | 
| +++ b/third_party/WebKit/Source/build/scripts/templates/SettingsMacros.h.tmpl | 
| @@ -6,7 +6,7 @@ | 
|  | 
| #define SETTINGS_GETTERS_AND_SETTERS \ | 
| {% for setting in settings %} | 
| -    {{setting.type|to_passing_type}} {{setting.name}}() const { return m_{{setting.name}}; } \ | 
| +    {{setting.type|to_passing_type}} Get{{setting.name|upper_first}}() const { return m_{{setting.name}}; } \ | 
| void set{{setting.name|upper_first}}({{setting.type|to_passing_type}} {{setting.name}}); \ | 
| {% endfor %} | 
| void setFromStrings(const String& name, const String& value); | 
|  |