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

Side by Side Diff: third_party/WebKit/Source/web/tests/sim/SimNetwork.h

Issue 2805733003: Rewrite references to "wtf/" to "platform/wtf/" in web. (Closed)
Patch Set: Created 3 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef SimNetwork_h 5 #ifndef SimNetwork_h
6 #define SimNetwork_h 6 #define SimNetwork_h
7 7
8 #include "platform/wtf/HashMap.h"
9 #include "platform/wtf/text/StringHash.h"
10 #include "platform/wtf/text/WTFString.h"
8 #include "public/platform/WebURLLoaderTestDelegate.h" 11 #include "public/platform/WebURLLoaderTestDelegate.h"
9 #include "wtf/HashMap.h"
10 #include "wtf/text/StringHash.h"
11 #include "wtf/text/WTFString.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class SimRequest; 15 class SimRequest;
16 class WebURLLoaderClient; 16 class WebURLLoaderClient;
17 class WebURLResponse; 17 class WebURLResponse;
18 18
19 // Simulates a network with precise flow control so you can make requests 19 // Simulates a network with precise flow control so you can make requests
20 // return, write data, and finish in a specific order in a unit test. One of 20 // return, write data, and finish in a specific order in a unit test. One of
21 // these must be created before using the SimRequest to issue requests. 21 // these must be created before using the SimRequest to issue requests.
(...skipping 26 matching lines...) Expand all
48 int64_t totalEncodedDataLength, 48 int64_t totalEncodedDataLength,
49 int64_t totalEncodedBodyLength) override; 49 int64_t totalEncodedBodyLength) override;
50 50
51 SimRequest* m_currentRequest; 51 SimRequest* m_currentRequest;
52 HashMap<String, SimRequest*> m_requests; 52 HashMap<String, SimRequest*> m_requests;
53 }; 53 };
54 54
55 } // namespace blink 55 } // namespace blink
56 56
57 #endif 57 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.h ('k') | third_party/WebKit/Source/web/tests/sim/SimRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698