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

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2822773002: [subresource_filter] Force the popup blocker on sites with activation (Closed)
Patch Set: Integrate with popup blocker Created 3 years, 8 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/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 2532 matching lines...) Expand 10 before | Expand all | Expand 10 after
2543 opener_render_frame_id, 2543 opener_render_frame_id,
2544 opener_top_level_frame_url); 2544 opener_top_level_frame_url);
2545 return false; 2545 return false;
2546 } 2546 }
2547 #endif 2547 #endif
2548 2548
2549 BlockedWindowParams blocked_params( 2549 BlockedWindowParams blocked_params(
2550 target_url, referrer, frame_name, disposition, features, user_gesture, 2550 target_url, referrer, frame_name, disposition, features, user_gesture,
2551 opener_suppressed, opener_render_process_id, opener_render_frame_id); 2551 opener_suppressed, opener_render_process_id, opener_render_frame_id);
2552 2552
2553 if (!user_gesture && 2553 auto* driver_factory = subresource_filter::
2554 ContentSubresourceFilterDriverFactory::FromWebContents(web_contents);
2555 bool popup_block_candidate =
engedy 2017/04/24 10:03:27 nit: const bool
Charlie Harrison 2017/04/24 15:41:54 Done.
2556 !user_gesture ||
2557 (driver_factory &&
2558 driver_factory->throttle_manager()->ShouldDisallowNewWindow());
2559 if (popup_block_candidate &&
2554 !base::CommandLine::ForCurrentProcess()->HasSwitch( 2560 !base::CommandLine::ForCurrentProcess()->HasSwitch(
2555 switches::kDisablePopupBlocking)) { 2561 switches::kDisablePopupBlocking)) {
2556 if (content_settings->GetContentSetting( 2562 if (content_settings->GetContentSetting(
2557 opener_top_level_frame_url, opener_top_level_frame_url, 2563 opener_top_level_frame_url, opener_top_level_frame_url,
2558 CONTENT_SETTINGS_TYPE_POPUPS, 2564 CONTENT_SETTINGS_TYPE_POPUPS,
2559 std::string()) != CONTENT_SETTING_ALLOW) { 2565 std::string()) != CONTENT_SETTING_ALLOW) {
2560 HandleBlockedPopupOnUIThread(blocked_params); 2566 HandleBlockedPopupOnUIThread(blocked_params);
2561 return false; 2567 return false;
2562 } 2568 }
2563 } 2569 }
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
3637 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 3643 RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
3638 return variations::GetVariationParamValue( 3644 return variations::GetVariationParamValue(
3639 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; 3645 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true";
3640 } 3646 }
3641 3647
3642 // static 3648 // static
3643 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( 3649 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting(
3644 const storage::QuotaSettings* settings) { 3650 const storage::QuotaSettings* settings) {
3645 g_default_quota_settings = settings; 3651 g_default_quota_settings = settings;
3646 } 3652 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698