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

Side by Side Diff: ios/chrome/browser/web/chrome_web_client_unittest.mm

Issue 2603973002: Import Objective C Frameworks (Closed)
Patch Set: only ios 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 (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/chrome/browser/web/chrome_web_client.h" 5 #include "ios/chrome/browser/web/chrome_web_client.h"
6 6
7 #include <UIKit/UIKit.h> 7 #import <UIKit/UIKit.h>
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "base/mac/scoped_nsobject.h" 11 #include "base/mac/scoped_nsobject.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/strings/string_split.h" 13 #include "base/strings/string_split.h"
14 #include "base/strings/sys_string_conversions.h" 14 #include "base/strings/sys_string_conversions.h"
15 #import "ios/web/public/test/js_test_util.h" 15 #import "ios/web/public/test/js_test_util.h"
16 #include "ios/web/public/test/scoped_testing_web_client.h" 16 #include "ios/web/public/test/scoped_testing_web_client.h"
17 #include "ios/web/public/test/test_browser_state.h" 17 #include "ios/web/public/test/test_browser_state.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 web::ScopedTestingWebClient web_client(base::MakeUnique<ChromeWebClient>()); 78 web::ScopedTestingWebClient web_client(base::MakeUnique<ChromeWebClient>());
79 NSString* script = web_client.Get()->GetEarlyPageScript(); 79 NSString* script = web_client.Get()->GetEarlyPageScript();
80 web::ExecuteJavaScript(web_view, script); 80 web::ExecuteJavaScript(web_view, script);
81 EXPECT_NSEQ(@"object", 81 EXPECT_NSEQ(@"object",
82 web::ExecuteJavaScript(web_view, @"typeof __gCrWeb.print")); 82 web::ExecuteJavaScript(web_view, @"typeof __gCrWeb.print"));
83 EXPECT_NSEQ(@"undefined", web::ExecuteJavaScript( 83 EXPECT_NSEQ(@"undefined", web::ExecuteJavaScript(
84 web_view, @"typeof __gCrWeb.windowOpenFix")); 84 web_view, @"typeof __gCrWeb.windowOpenFix"));
85 } 85 }
86 86
87 } // namespace 87 } // namespace
OLDNEW
« no previous file with comments | « ios/chrome/browser/web/auto_reload_controller.h ('k') | ios/net/cookies/cookie_creation_time_manager.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698