| Index: chrome/browser/browser_process_impl.cc
|
| diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
|
| index ea5279755dc0e514d6d45bc8fda2201bd7c9663b..53d44d8c9f9d6a227ed3de37d5a19ff8a1e737bf 100644
|
| --- a/chrome/browser/browser_process_impl.cc
|
| +++ b/chrome/browser/browser_process_impl.cc
|
| @@ -657,7 +657,7 @@ void BrowserProcessImpl::CreateLocalState() {
|
| // in the plugin blacklist.
|
| local_state_->RegisterListPref(prefs::kPluginsPluginsBlacklist);
|
| pref_change_registrar_.Add(prefs::kPluginsPluginsBlacklist,
|
| - PluginUpdater::GetPluginUpdater());
|
| + PluginUpdater::GetInstance());
|
|
|
| // Initialize and set up notifications for the printing enabled
|
| // preference.
|
| @@ -764,9 +764,9 @@ DISABLE_RUNNABLE_METHOD_REFCOUNT(BrowserProcessImpl);
|
| void BrowserProcessImpl::SetIPCLoggingEnabled(bool enable) {
|
| // First enable myself.
|
| if (enable)
|
| - IPC::Logging::current()->Enable();
|
| + IPC::Logging::GetInstance()->Enable();
|
| else
|
| - IPC::Logging::current()->Disable();
|
| + IPC::Logging::GetInstance()->Disable();
|
|
|
| // Now tell subprocesses. Messages to ChildProcess-derived
|
| // processes must be done on the IO thread.
|
|
|