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

Unified Diff: ios/public/provider/chrome/browser/voice/voice_search_provider.h

Issue 2644703003: Fix memory management of VoiceSearchBarView. (Closed)
Patch Set: Don't update BVC Created 3 years, 11 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 | « no previous file | ios/public/provider/chrome/browser/voice/voice_search_provider.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/public/provider/chrome/browser/voice/voice_search_provider.h
diff --git a/ios/public/provider/chrome/browser/voice/voice_search_provider.h b/ios/public/provider/chrome/browser/voice/voice_search_provider.h
index 05be8e6253dc4371a1503d20d9c47ed0d3dfed0b..58f4ba6e867ee487f008b4f7d3913f361bbd0c92 100644
--- a/ios/public/provider/chrome/browser/voice/voice_search_provider.h
+++ b/ios/public/provider/chrome/browser/voice/voice_search_provider.h
@@ -41,9 +41,14 @@ class VoiceSearchProvider {
ios::ChromeBrowserState* browser_state) const;
// Creates a new VoiceSearchBar. The caller assumes ownership.
+ // TODO(crbug.com/679719): Remove this once downstream provider implementaiton
+ // switches to BuildVoiceSearchBar().
virtual UIView<VoiceSearchBar>* CreateVoiceSearchBar(CGRect frame) const
NS_RETURNS_RETAINED;
+ // Creates a new VoiceSearchBar. Returns an autoreleased view.
+ virtual UIView<VoiceSearchBar>* BuildVoiceSearchBar(CGRect frame) const;
+
private:
DISALLOW_COPY_AND_ASSIGN(VoiceSearchProvider);
};
« no previous file with comments | « no previous file | ios/public/provider/chrome/browser/voice/voice_search_provider.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698