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

Side by Side Diff: content/child/web_url_loader_impl_unittest.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/child/web_url_request_util.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 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 "content/child/web_url_loader_impl.h" 5 #include "content/child/web_url_loader_impl.h"
6 6
7 #include <stdint.h>
7 #include <string.h> 8 #include <string.h>
8 #include <vector> 9 #include <vector>
9 10
10 #include "base/command_line.h" 11 #include "base/command_line.h"
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
13 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
14 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
16 #include "components/scheduler/child/web_task_runner_impl.h" 17 #include "components/scheduler/child/web_task_runner_impl.h"
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 EXPECT_EQ(kMimeType, client()->response().mimeType().latin1()); 712 EXPECT_EQ(kMimeType, client()->response().mimeType().latin1());
712 713
713 DoReceiveData(); 714 DoReceiveData();
714 DoCompleteRequest(); 715 DoCompleteRequest();
715 EXPECT_FALSE(dispatcher()->canceled()); 716 EXPECT_FALSE(dispatcher()->canceled());
716 EXPECT_EQ(kTestData, client()->received_data()); 717 EXPECT_EQ(kTestData, client()->received_data());
717 } 718 }
718 719
719 } // namespace 720 } // namespace
720 } // namespace content 721 } // namespace content
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/child/web_url_request_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698