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

Unified Diff: Source/core/speech/SpeechInput.cpp

Issue 26952002: Move speech related files out of page/ into their own directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/speech/SpeechInput.h ('k') | Source/core/speech/SpeechInputClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/speech/SpeechInput.cpp
diff --git a/Source/core/page/SpeechInput.cpp b/Source/core/speech/SpeechInput.cpp
similarity index 96%
rename from Source/core/page/SpeechInput.cpp
rename to Source/core/speech/SpeechInput.cpp
index 0ad8c86e0e1f9a6dd1cae7ebd0aa2a65ed5c0c3b..839ee08e0109632c51669ea178986de28e6acf86 100644
--- a/Source/core/page/SpeechInput.cpp
+++ b/Source/core/speech/SpeechInput.cpp
@@ -29,12 +29,12 @@
*/
#include "config.h"
-#include "core/page/SpeechInput.h"
+#include "core/speech/SpeechInput.h"
#if ENABLE(INPUT_SPEECH)
-#include "core/page/SpeechInputClient.h"
-#include "core/page/SpeechInputListener.h"
+#include "core/speech/SpeechInputClient.h"
+#include "core/speech/SpeechInputListener.h"
#include "wtf/PassOwnPtr.h"
namespace WebCore {
@@ -61,7 +61,7 @@ int SpeechInput::registerListener(SpeechInputListener* listener)
#if defined(DEBUG)
// Check if already present.
for (HashMap<int, SpeechInputListener*>::iterator it = m_listeners.begin(); it != m_listeners.end(); ++it)
- ASSERT(it->value != listener);
+ ASSERT(it->value != listener);
#endif
m_listeners.add(m_nextListenerId, listener);
« no previous file with comments | « Source/core/speech/SpeechInput.h ('k') | Source/core/speech/SpeechInputClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698