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

Unified Diff: chrome/browser/extensions/extension_tts_api_platform.cc

Issue 9808024: Move TTS extension API to chrome/browser/speech/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix chromeos compile error, rebase Created 8 years, 9 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
Index: chrome/browser/extensions/extension_tts_api_platform.cc
diff --git a/chrome/browser/extensions/extension_tts_api_platform.cc b/chrome/browser/extensions/extension_tts_api_platform.cc
deleted file mode 100644
index a842a34129568b0a3c172dd147d9623d6c5a0651..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/extension_tts_api_platform.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/extensions/extension_tts_api_platform.h"
-
-#include <string>
-
-std::string ExtensionTtsPlatformImpl::gender() {
- return std::string();
-}
-
-std::string ExtensionTtsPlatformImpl::error() {
- return error_;
-}
-
-void ExtensionTtsPlatformImpl::clear_error() {
- error_ = std::string();
-}
-
-void ExtensionTtsPlatformImpl::set_error(const std::string& error) {
- error_ = error;
-}
« no previous file with comments | « chrome/browser/extensions/extension_tts_api_platform.h ('k') | chrome/browser/extensions/extension_tts_api_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698