Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: chrome/browser/ui/hung_plugin_tab_helper.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/hung_plugin_tab_helper.h" 5 #include "chrome/browser/ui/hung_plugin_tab_helper.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/process/process.h" 10 #include "base/process/process.h"
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 } 348 }
349 } 349 }
350 } 350 }
351 351
352 void HungPluginTabHelper::KillPlugin(int child_id) { 352 void HungPluginTabHelper::KillPlugin(int child_id) {
353 #if defined(OS_WIN) 353 #if defined(OS_WIN)
354 // Dump renderers that are sending or receiving pepper messages, in order to 354 // Dump renderers that are sending or receiving pepper messages, in order to
355 // diagnose inter-process deadlocks. 355 // diagnose inter-process deadlocks.
356 // Only do that on the Canary channel, for 20% of pepper plugin hangs. 356 // Only do that on the Canary channel, for 20% of pepper plugin hangs.
357 if (base::RandInt(0, 100) < 20) { 357 if (base::RandInt(0, 100) < 20) {
358 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); 358 version_info::Channel channel = chrome::VersionInfo::GetChannel();
359 if (channel == chrome::VersionInfo::CHANNEL_CANARY) { 359 if (channel == version_info::Channel::CANARY) {
360 scoped_ptr<OwnedHandleVector> renderer_handles(new OwnedHandleVector); 360 scoped_ptr<OwnedHandleVector> renderer_handles(new OwnedHandleVector);
361 HANDLE current_process = ::GetCurrentProcess(); 361 HANDLE current_process = ::GetCurrentProcess();
362 content::RenderProcessHost::iterator renderer_iter = 362 content::RenderProcessHost::iterator renderer_iter =
363 content::RenderProcessHost::AllHostsIterator(); 363 content::RenderProcessHost::AllHostsIterator();
364 for (; !renderer_iter.IsAtEnd(); renderer_iter.Advance()) { 364 for (; !renderer_iter.IsAtEnd(); renderer_iter.Advance()) {
365 content::RenderProcessHost* host = renderer_iter.GetCurrentValue(); 365 content::RenderProcessHost* host = renderer_iter.GetCurrentValue();
366 HANDLE handle = NULL; 366 HANDLE handle = NULL;
367 ::DuplicateHandle(current_process, host->GetHandle(), current_process, 367 ::DuplicateHandle(current_process, host->GetHandle(), current_process,
368 &handle, 0, FALSE, DUPLICATE_SAME_ACCESS); 368 &handle, 0, FALSE, DUPLICATE_SAME_ACCESS);
369 renderer_handles->data()->push_back(handle); 369 renderer_handles->data()->push_back(handle);
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 } 416 }
417 417
418 void HungPluginTabHelper::CloseBar(PluginState* state) { 418 void HungPluginTabHelper::CloseBar(PluginState* state) {
419 InfoBarService* infobar_service = 419 InfoBarService* infobar_service =
420 InfoBarService::FromWebContents(web_contents()); 420 InfoBarService::FromWebContents(web_contents());
421 if (infobar_service && state->infobar) { 421 if (infobar_service && state->infobar) {
422 infobar_service->RemoveInfoBar(state->infobar); 422 infobar_service->RemoveInfoBar(state->infobar);
423 state->infobar = NULL; 423 state->infobar = NULL;
424 } 424 }
425 } 425 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/extensions/extension_message_bubble_factory.cc ('k') | chrome/browser/ui/panels/panel_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698