 Chromium Code Reviews
 Chromium Code Reviews Issue 1803233002:
  AnalyserNode should downmix channels to mono.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1803233002:
  AnalyserNode should downmix channels to mono.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: third_party/WebKit/LayoutTests/webaudio/resources/audio-testing.js | 
| diff --git a/third_party/WebKit/LayoutTests/webaudio/resources/audio-testing.js b/third_party/WebKit/LayoutTests/webaudio/resources/audio-testing.js | 
| index ba04d973852e7e1c32217e2e87284c789babd454..df1b652811c93c47d7a456320d1a137d74c76ba7 100644 | 
| --- a/third_party/WebKit/LayoutTests/webaudio/resources/audio-testing.js | 
| +++ b/third_party/WebKit/LayoutTests/webaudio/resources/audio-testing.js | 
| @@ -263,7 +263,6 @@ function isValidNumber(x) { | 
| return !isNaN(x) && (x != Infinity) && (x != -Infinity); | 
| } | 
| - | 
| 
hongchan
2016/03/16 21:51:42
nit: I put 2 spaces intentionally here, but doesn'
 
Raymond Toy
2016/03/16 21:58:23
I didn't mean to change this file. (I originally h
 
Raymond Toy
2016/03/18 17:33:04
Done.
 | 
| // |Audit| is a task runner for web audio test. It makes asynchronous web audio | 
| // testing simple and manageable. | 
| // |