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

Side by Side Diff: chrome/browser/android/voice_search_tab_helper.cc

Issue 2846623003: Make autoplay policies no longer platform dependant. (Closed)
Patch Set: fix webview Created 3 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/android/voice_search_tab_helper.h" 5 #include "chrome/browser/android/voice_search_tab_helper.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "components/google/core/browser/google_util.h" 8 #include "components/google/core/browser/google_util.h"
9 #include "content/public/browser/render_view_host.h" 9 #include "content/public/browser/render_view_host.h"
10 #include "content/public/browser/web_contents.h" 10 #include "content/public/browser/web_contents.h"
11 #include "content/public/common/web_preferences.h" 11 #include "content/public/common/web_preferences.h"
12 #include "media/base/media_switches.h" 12 #include "media/base/media_switches.h"
13 13
14 DEFINE_WEB_CONTENTS_USER_DATA_KEY(VoiceSearchTabHelper); 14 DEFINE_WEB_CONTENTS_USER_DATA_KEY(VoiceSearchTabHelper);
15 15
16 // TODO(715588): this class shouldn't be playing with the user gesture 16 // TODO(715588): this class shouldn't be playing with the user gesture
17 // requirements like this. 17 // requirements like this.
18 VoiceSearchTabHelper::VoiceSearchTabHelper(content::WebContents* contents) 18 VoiceSearchTabHelper::VoiceSearchTabHelper(content::WebContents* contents)
19 : content::WebContentsObserver(contents) { 19 : content::WebContentsObserver(contents) {
20 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); 20 const base::CommandLine* command_line =
21 base::CommandLine::ForCurrentProcess();
21 gesture_requirement_for_playback_disabled_ = 22 gesture_requirement_for_playback_disabled_ =
22 command_line->HasSwitch(switches::kIgnoreAutoplayRestrictionsForTests) || 23 media::GetEffectiveAutoplayPolicy(*command_line) ==
23 command_line->GetSwitchValueASCII(switches::kAutoplayPolicy) != 24 switches::autoplay::kNoUserGestureRequiredPolicy;
24 switches::autoplay::kNoUserGestureRequiredPolicy;
25 } 25 }
26 26
27 VoiceSearchTabHelper::~VoiceSearchTabHelper() { 27 VoiceSearchTabHelper::~VoiceSearchTabHelper() {
28 } 28 }
29 29
30 void VoiceSearchTabHelper::NavigationEntryCommitted( 30 void VoiceSearchTabHelper::NavigationEntryCommitted(
31 const content::LoadCommittedDetails& load_details) { 31 const content::LoadCommittedDetails& load_details) {
32 // In the case where media autoplay has been disabled by default (e.g. in 32 // In the case where media autoplay has been disabled by default (e.g. in
33 // performance media tests) do not update it based on navigation changes. 33 // performance media tests) do not update it based on navigation changes.
34 if (gesture_requirement_for_playback_disabled_) 34 if (gesture_requirement_for_playback_disabled_)
35 return; 35 return;
36 36
37 content::RenderViewHost* host = web_contents()->GetRenderViewHost(); 37 content::RenderViewHost* host = web_contents()->GetRenderViewHost();
38 content::WebPreferences prefs = host->GetWebkitPreferences(); 38 content::WebPreferences prefs = host->GetWebkitPreferences();
39 39
40 bool gesture_required = 40 bool gesture_required =
41 !google_util::IsGoogleSearchUrl(web_contents()->GetLastCommittedURL()); 41 !google_util::IsGoogleSearchUrl(web_contents()->GetLastCommittedURL());
42 bool gesture_requiref_by_prefs =
Bernhard Bauer 2017/05/09 12:47:17 Nit: |gesture_required_by_prefs|
mlamouri (slow - plz ping) 2017/05/09 17:24:35 Done.
43 prefs.autoplay_policy == content::AutoplayPolicy::kUserGestureRequired;
42 44
43 if (gesture_required != prefs.user_gesture_required_for_media_playback) { 45 if (gesture_required != gesture_requiref_by_prefs) {
44 // TODO(chrishtr): this is wrong. user_gesture_required_for_media_playback 46 // TODO(chrishtr): this is wrong. user_gesture_required_for_media_playback
45 // will be reset the next time a preference changes. 47 // will be reset the next time a preference changes.
46 prefs.user_gesture_required_for_media_playback = gesture_required; 48 // TODO(mlamouri): this is even more wrong because it makes assumptions with
49 // regards to the default autoplay policy.
50 prefs.autoplay_policy =
51 gesture_required ? content::AutoplayPolicy::kUserGestureRequired
52 : content::AutoplayPolicy::kNoUserGestureRequired;
47 host->UpdateWebkitPreferences(prefs); 53 host->UpdateWebkitPreferences(prefs);
48 } 54 }
49 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698