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

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

Issue 952323002: Cleanup: Fix some content includes that were not using full qualified paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 "mock_url_request_delegate.h" 5 #include "content/browser/fileapi/mock_url_request_delegate.h"
6 6
7 #include "base/profiler/scoped_tracker.h" 7 #include "base/profiler/scoped_tracker.h"
8 #include "base/run_loop.h" 8 #include "base/run_loop.h"
9 #include "net/base/io_buffer.h" 9 #include "net/base/io_buffer.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace { 12 namespace {
13 const int kBufferSize = 1024; 13 const int kBufferSize = 1024;
14 } 14 }
15 15
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 } else { 74 } else {
75 RequestComplete(); 75 RequestComplete();
76 } 76 }
77 } 77 }
78 78
79 void MockURLRequestDelegate::RequestComplete() { 79 void MockURLRequestDelegate::RequestComplete() {
80 base::MessageLoop::current()->Quit(); 80 base::MessageLoop::current()->Quit();
81 } 81 }
82 82
83 } // namespace 83 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698