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

Unified Diff: ios/clean/chrome/browser/model/browser.mm

Issue 2737563006: [ios] Adds support for Find in Page to the new architecture. (Closed)
Patch Set: Partially hook up the text field Created 3 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: ios/clean/chrome/browser/model/browser.mm
diff --git a/ios/clean/chrome/browser/model/browser.mm b/ios/clean/chrome/browser/model/browser.mm
index ede26f6aabfc7b985ebb6270ce5e1b61130976da..ba0ea80155eb4be89bc2ea31094d1ea17e5ce07f 100644
--- a/ios/clean/chrome/browser/model/browser.mm
+++ b/ios/clean/chrome/browser/model/browser.mm
@@ -5,6 +5,7 @@
#import "ios/clean/chrome/browser/model/browser.h"
#include "base/logging.h"
+#import "ios/clean/chrome/browser/ui/commands/command_dispatcher.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
@@ -12,6 +13,7 @@
Browser::Browser(ios::ChromeBrowserState* browser_state)
: web_state_list_(WebStateList::WebStateOwned),
+ dispatcher_([[CommandDispatcher alloc] init]),
browser_state_(browser_state) {
DCHECK(browser_state_);
}

Powered by Google App Engine
This is Rietveld 408576698