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

Unified Diff: content/browser/speech/speech_recognizer_impl.h

Issue 10068037: RefCounted types should not have public destructors, content/browser part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MSVC fixes Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/resolve_proxy_msg_helper.cc ('k') | content/browser/speech/speech_recognizer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/speech/speech_recognizer_impl.h
diff --git a/content/browser/speech/speech_recognizer_impl.h b/content/browser/speech/speech_recognizer_impl.h
index 5b37d61a9d6ff9685efe0ccc12eea3a80ea8547e..58ddea2032a42e3456c5b088bbce6dc1815e0bc3 100644
--- a/content/browser/speech/speech_recognizer_impl.h
+++ b/content/browser/speech/speech_recognizer_impl.h
@@ -48,7 +48,6 @@ class CONTENT_EXPORT SpeechRecognizerImpl
content::SpeechRecognitionEventListener* listener,
int session_id,
SpeechRecognitionEngine* engine);
- virtual ~SpeechRecognizerImpl();
// content::SpeechRecognizer methods.
virtual void StartRecognition() OVERRIDE;
@@ -58,6 +57,9 @@ class CONTENT_EXPORT SpeechRecognizerImpl
virtual bool IsCapturingAudio() const OVERRIDE;
const SpeechRecognitionEngine& recognition_engine() const;
+ protected:
+ virtual ~SpeechRecognizerImpl();
+
private:
friend class SpeechRecognizerImplTest;
« no previous file with comments | « content/browser/resolve_proxy_msg_helper.cc ('k') | content/browser/speech/speech_recognizer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698