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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. 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 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "modules/webaudio/PannerNode.h" 66 #include "modules/webaudio/PannerNode.h"
67 #include "modules/webaudio/PeriodicWave.h" 67 #include "modules/webaudio/PeriodicWave.h"
68 #include "modules/webaudio/PeriodicWaveConstraints.h" 68 #include "modules/webaudio/PeriodicWaveConstraints.h"
69 #include "modules/webaudio/ScriptProcessorNode.h" 69 #include "modules/webaudio/ScriptProcessorNode.h"
70 #include "modules/webaudio/StereoPannerNode.h" 70 #include "modules/webaudio/StereoPannerNode.h"
71 #include "modules/webaudio/WaveShaperNode.h" 71 #include "modules/webaudio/WaveShaperNode.h"
72 #include "platform/CrossThreadFunctional.h" 72 #include "platform/CrossThreadFunctional.h"
73 #include "platform/Histogram.h" 73 #include "platform/Histogram.h"
74 #include "platform/UserGestureIndicator.h" 74 #include "platform/UserGestureIndicator.h"
75 #include "platform/audio/IIRFilter.h" 75 #include "platform/audio/IIRFilter.h"
76 #include "platform/wtf/text/WTFString.h"
76 #include "public/platform/Platform.h" 77 #include "public/platform/Platform.h"
77 #include "wtf/text/WTFString.h"
78 78
79 namespace blink { 79 namespace blink {
80 80
81 BaseAudioContext* BaseAudioContext::Create( 81 BaseAudioContext* BaseAudioContext::Create(
82 Document& document, 82 Document& document,
83 const AudioContextOptions& context_options, 83 const AudioContextOptions& context_options,
84 ExceptionState& exception_state) { 84 ExceptionState& exception_state) {
85 return AudioContext::Create(document, context_options, exception_state); 85 return AudioContext::Create(document, context_options, exception_state);
86 } 86 }
87 87
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 } 921 }
922 922
923 SecurityOrigin* BaseAudioContext::GetSecurityOrigin() const { 923 SecurityOrigin* BaseAudioContext::GetSecurityOrigin() const {
924 if (GetExecutionContext()) 924 if (GetExecutionContext())
925 return GetExecutionContext()->GetSecurityOrigin(); 925 return GetExecutionContext()->GetSecurityOrigin();
926 926
927 return nullptr; 927 return nullptr;
928 } 928 }
929 929
930 } // namespace blink 930 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698