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

Side by Side Diff: ios/chrome/browser/find_in_page/find_in_page_controller.mm

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after r384946 Created 4 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 unified diff | Download patch
« no previous file with comments | « content/test/content_test_suite.h ('k') | ios/chrome/browser/memory/memory_metrics.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #import "ios/chrome/browser/find_in_page/find_in_page_controller.h" 5 #import "ios/chrome/browser/find_in_page/find_in_page_controller.h"
6 6
7 #import <UIKit/UIKit.h> 7 #import <UIKit/UIKit.h>
8 #import <cmath> 8 #import <cmath>
9 9
10 #include "base/ios/ios_util.h" 10 #include "base/ios/ios_util.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/mac/foundation_util.h" 12 #include "base/mac/foundation_util.h"
13 #include "base/mac/scoped_nsobject.h" 13 #include "base/mac/scoped_nsobject.h"
14 #include "base/memory/scoped_ptr.h"
14 #import "ios/chrome/browser/find_in_page/find_in_page_model.h" 15 #import "ios/chrome/browser/find_in_page/find_in_page_model.h"
15 #import "ios/chrome/browser/find_in_page/js_findinpage_manager.h" 16 #import "ios/chrome/browser/find_in_page/js_findinpage_manager.h"
16 #import "ios/chrome/browser/web/dom_altering_lock.h" 17 #import "ios/chrome/browser/web/dom_altering_lock.h"
17 #import "ios/web/public/web_state/crw_web_view_proxy.h" 18 #import "ios/web/public/web_state/crw_web_view_proxy.h"
18 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h" 19 #import "ios/web/public/web_state/crw_web_view_scroll_view_proxy.h"
19 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" 20 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h"
20 #import "ios/web/public/web_state/web_state.h" 21 #import "ios/web/public/web_state/web_state.h"
21 #import "ios/web/public/web_state/web_state_observer_bridge.h" 22 #import "ios/web/public/web_state/web_state_observer_bridge.h"
22 23
23 NSString* const kFindBarTextFieldWillBecomeFirstResponderNotification = 24 NSString* const kFindBarTextFieldWillBecomeFirstResponderNotification =
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 376
376 - (BOOL)canReleaseDOMLock { 377 - (BOOL)canReleaseDOMLock {
377 return NO; 378 return NO;
378 } 379 }
379 380
380 - (void)releaseDOMLockWithCompletionHandler:(ProceduralBlock)completionHandler { 381 - (void)releaseDOMLockWithCompletionHandler:(ProceduralBlock)completionHandler {
381 NOTREACHED(); 382 NOTREACHED();
382 } 383 }
383 384
384 @end 385 @end
OLDNEW
« no previous file with comments | « content/test/content_test_suite.h ('k') | ios/chrome/browser/memory/memory_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698