Code style fixes

This commit is contained in:
Cheng Zhao 2018-03-06 11:31:56 +09:00
parent d8f16f4116
commit 7516b059fe
4 changed files with 15 additions and 16 deletions

View file

@ -301,13 +301,13 @@ bool WebContentsPreferences::GetInteger(const std::string& attributeName,
return false;
}
bool WebContentsPreferences::GetString(const std::string& attributeName,
std::string* stringValue,
bool WebContentsPreferences::GetString(const std::string& attribute_name,
std::string* string_value,
content::WebContents* web_contents) {
WebContentsPreferences* self = FromWebContents(web_contents);
if (!self)
return false;
return self->web_preferences()->GetString(attributeName, stringValue);
return self->web_preferences()->GetString(attribute_name, string_value);
}
} // namespace atom