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

Side by Side Diff: Source/core/inspector/InspectorResourceContentLoader.h

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes 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 #ifndef InspectorResourceContentLoader_h 5 #ifndef InspectorResourceContentLoader_h
6 #define InspectorResourceContentLoader_h 6 #define InspectorResourceContentLoader_h
7 7
8 #include "core/fetch/ResourcePtr.h" 8 #include "core/fetch/ResourcePtr.h"
9 #include "wtf/HashSet.h" 9 #include "wtf/HashSet.h"
10 #include "wtf/Noncopyable.h" 10 #include "wtf/Noncopyable.h"
(...skipping 17 matching lines...) Expand all
28 bool hasFinished(); 28 bool hasFinished();
29 void stop(); 29 void stop();
30 30
31 private: 31 private:
32 class ResourceClient; 32 class ResourceClient;
33 33
34 void resourceFinished(ResourceClient*); 34 void resourceFinished(ResourceClient*);
35 void checkDone(); 35 void checkDone();
36 void start(); 36 void start();
37 37
38 PersistentHeapVectorWillBeHeapVector<Member<VoidCallback> > m_callbacks; 38 PersistentHeapVectorWillBeHeapVector<Member<VoidCallback>> m_callbacks;
39 bool m_allRequestsStarted; 39 bool m_allRequestsStarted;
40 bool m_started; 40 bool m_started;
41 RawPtrWillBeMember<Page> m_page; 41 RawPtrWillBeMember<Page> m_page;
42 HashSet<ResourceClient*> m_pendingResourceClients; 42 HashSet<ResourceClient*> m_pendingResourceClients;
43 Vector<ResourcePtr<Resource> > m_resources; 43 Vector<ResourcePtr<Resource>> m_resources;
44 44
45 friend class ResourceClient; 45 friend class ResourceClient;
46 }; 46 };
47 47
48 } // namespace blink 48 } // namespace blink
49 49
50 50
51 #endif // !defined(InspectorResourceContentLoader_h) 51 #endif // !defined(InspectorResourceContentLoader_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorResourceAgent.h ('k') | Source/core/inspector/InspectorResourceContentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698