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

Unified Diff: chrome_frame/test/url_request_test.cc

Issue 5783004: Keep deinlining stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Well, it all compiles locally? Created 10 years 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: chrome_frame/test/url_request_test.cc
diff --git a/chrome_frame/test/url_request_test.cc b/chrome_frame/test/url_request_test.cc
index 127bec204b68cf33d9ea85ccbe598cd16fdfbbf0..95b8969958d47de47935152204dad7235a00d46f 100644
--- a/chrome_frame/test/url_request_test.cc
+++ b/chrome_frame/test/url_request_test.cc
@@ -260,9 +260,9 @@ TEST(UrlmonUrlRequestManagerTest, Simple1) {
scoped_ptr<UrlmonUrlRequestManager> mgr(new UrlmonUrlRequestManager());
mgr->set_delegate(&mock);
- IPC::AutomationURLRequest r1 = {
+ IPC::AutomationURLRequest r1(
WideToUTF8(mock_server.Resolve(L"chrome_frame_window_open.html")),
- "get" };
+ "get", "", "", NULL, 0, 0);
EXPECT_CALL(mock, OnResponseStarted(1, testing::_, testing::_, testing::_,
testing::_, testing::_, testing::_))
@@ -293,9 +293,9 @@ TEST(UrlmonUrlRequestManagerTest, Abort1) {
scoped_ptr<UrlmonUrlRequestManager> mgr(new UrlmonUrlRequestManager());
mgr->set_delegate(&mock);
- IPC::AutomationURLRequest r1 = {
+ IPC::AutomationURLRequest r1(
WideToUTF8(mock_server.Resolve(L"chrome_frame_window_open.html")),
- "get" };
+ "get", "", "", NULL, 0, 0);
EXPECT_CALL(mock, OnResponseStarted(1, testing::_, testing::_, testing::_,
testing::_, testing::_, testing::_))
@@ -314,4 +314,3 @@ TEST(UrlmonUrlRequestManagerTest, Abort1) {
loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds);
mgr.reset();
}
-

Powered by Google App Engine
This is Rietveld 408576698