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

Side by Side Diff: ios/web/public/test/test_web_state.mm

Issue 2605913002: Fix include import in ios/web (Closed)
Patch Set: add missing #import 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "ios/web/public/test/test_web_state.h" 5 #import "ios/web/public/test/test_web_state.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "ios/web/public/web_state/web_state_observer.h" 10 #include "ios/web/public/web_state/web_state_observer.h"
11 11
12 namespace web { 12 namespace web {
13 13
14 void TestWebState::AddObserver(WebStateObserver* observer) { 14 void TestWebState::AddObserver(WebStateObserver* observer) {
15 observers_.AddObserver(observer); 15 observers_.AddObserver(observer);
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 service_manager::InterfaceRegistry* TestWebState::GetMojoInterfaceRegistry() { 181 service_manager::InterfaceRegistry* TestWebState::GetMojoInterfaceRegistry() {
182 return nullptr; 182 return nullptr;
183 } 183 }
184 184
185 base::WeakPtr<WebState> TestWebState::AsWeakPtr() { 185 base::WeakPtr<WebState> TestWebState::AsWeakPtr() {
186 NOTREACHED(); 186 NOTREACHED();
187 return base::WeakPtr<WebState>(); 187 return base::WeakPtr<WebState>();
188 } 188 }
189 189
190 } // namespace web 190 } // namespace web
OLDNEW
« no previous file with comments | « ios/web/public/test/test_web_client.h ('k') | ios/web/public/test/test_web_view_content_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698