Upgrade cpplint

This commit is contained in:
Cheng Zhao 2014-12-15 17:15:56 -08:00
parent 1641caf353
commit d50eeb04d5
6 changed files with 23 additions and 22 deletions

View file

@ -439,9 +439,10 @@ void NativeWindow::OverrideWebkitPrefs(const GURL& url,
prefs->experimental_webgl_enabled = b;
if (web_preferences_.Get("webaudio", &b))
prefs->webaudio_enabled = b;
if (web_preferences_.Get("extra-plugin-dirs", &list))
if (web_preferences_.Get("extra-plugin-dirs", &list)) {
for (size_t i = 0; i < list.size(); ++i)
content::PluginService::GetInstance()->AddExtraPluginDir(list[i]);
}
}
void NativeWindow::NotifyWindowClosed() {