Chromium Code Reviews| Index: chrome/browser/extensions/extension_proxy_api.cc |
| diff --git a/chrome/browser/extensions/extension_proxy_api.cc b/chrome/browser/extensions/extension_proxy_api.cc |
| index 9bc33cbf5681cc01b57efc1299fe72db7803f1b1..86621d9ed63ff93b31e589fa7c48453d53a18264 100644 |
| --- a/chrome/browser/extensions/extension_proxy_api.cc |
| +++ b/chrome/browser/extensions/extension_proxy_api.cc |
| @@ -159,6 +159,8 @@ bool UseCustomProxySettingsFunction::ApplyProxyRules( |
| void UseCustomProxySettingsFunction::SendNotification(const char* pref_path, |
| Value* pref_value) { |
| + const bool incognito = false; |
| profile()->GetExtensionService()->extension_prefs() |
| - ->SetExtensionControlledPref(extension_id(), pref_path, pref_value); |
| + ->SetExtensionControlledPref(extension_id(), pref_path, incognito, |
|
danno
2010/12/22 10:48:21
Why not pass false directly at the call site?
battre
2010/12/22 18:34:53
If one of four parameters is a plain "false", I co
|
| + pref_value); |
| } |