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

Side by Side Diff: content/browser/fileapi/mock_url_request_delegate.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 "content/browser/fileapi/mock_url_request_delegate.h" 5 #include "content/browser/fileapi/mock_url_request_delegate.h"
6 6
7 #include <stddef.h>
8
7 #include "base/run_loop.h" 9 #include "base/run_loop.h"
8 #include "net/base/io_buffer.h" 10 #include "net/base/io_buffer.h"
9 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
10 12
11 namespace { 13 namespace {
12 const int kBufferSize = 1024; 14 const int kBufferSize = 1024;
13 } 15 }
14 16
15 namespace content { 17 namespace content {
16 18
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 } else { 65 } else {
64 RequestComplete(); 66 RequestComplete();
65 } 67 }
66 } 68 }
67 69
68 void MockURLRequestDelegate::RequestComplete() { 70 void MockURLRequestDelegate::RequestComplete() {
69 base::MessageLoop::current()->QuitWhenIdle(); 71 base::MessageLoop::current()->QuitWhenIdle();
70 } 72 }
71 73
72 } // namespace 74 } // namespace
OLDNEW
« no previous file with comments | « content/browser/fileapi/mock_file_update_observer.cc ('k') | content/browser/fileapi/native_file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698