| OLD | NEW |
| 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/mac/scoped_nsobject.h" | 7 #include "base/mac/scoped_nsobject.h" |
| 8 #include "base/macros.h" |
| 8 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 9 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| 10 #include "base/values.h" | 11 #include "base/values.h" |
| 11 #include "chrome/browser/speech/tts_controller.h" | 12 #include "chrome/browser/speech/tts_controller.h" |
| 12 #include "chrome/browser/speech/tts_platform.h" | 13 #include "chrome/browser/speech/tts_platform.h" |
| 13 #include "extensions/browser/extension_function.h" | 14 #include "extensions/browser/extension_function.h" |
| 14 | 15 |
| 15 #import <Cocoa/Cocoa.h> | 16 #import <Cocoa/Cocoa.h> |
| 16 | 17 |
| 17 class TtsPlatformImplMac; | 18 class TtsPlatformImplMac; |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 didSpeak_ = true; | 342 didSpeak_ = true; |
| 342 return [super startSpeakingString:utterance_]; | 343 return [super startSpeakingString:utterance_]; |
| 343 } | 344 } |
| 344 | 345 |
| 345 - (bool)startSpeakingString:(NSString*)utterance { | 346 - (bool)startSpeakingString:(NSString*)utterance { |
| 346 CHECK(false); | 347 CHECK(false); |
| 347 return false; | 348 return false; |
| 348 } | 349 } |
| 349 | 350 |
| 350 @end | 351 @end |
| OLD | NEW |