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

Side by Side Diff: third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 WebAssociatedURLLoaderImpl_h 5 #ifndef WebAssociatedURLLoaderImpl_h
6 #define WebAssociatedURLLoaderImpl_h 6 #define WebAssociatedURLLoaderImpl_h
7 7
8 #include <memory>
8 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
9 #include "public/web/WebAssociatedURLLoader.h" 10 #include "public/web/WebAssociatedURLLoader.h"
10 #include "public/web/WebAssociatedURLLoaderOptions.h" 11 #include "public/web/WebAssociatedURLLoaderOptions.h"
11 #include "wtf/Noncopyable.h" 12 #include "wtf/Noncopyable.h"
12 #include "wtf/RefPtr.h" 13 #include "wtf/RefPtr.h"
13 #include <memory>
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class DocumentThreadableLoader; 17 class DocumentThreadableLoader;
18 class WebAssociatedURLLoaderClient; 18 class WebAssociatedURLLoaderClient;
19 class WebLocalFrameImpl; 19 class WebLocalFrameImpl;
20 20
21 // This class is used to implement WebFrame::createAssociatedURLLoader. 21 // This class is used to implement WebFrame::createAssociatedURLLoader.
22 class WebAssociatedURLLoaderImpl final : public WebAssociatedURLLoader { 22 class WebAssociatedURLLoaderImpl final : public WebAssociatedURLLoader {
23 WTF_MAKE_NONCOPYABLE(WebAssociatedURLLoaderImpl); 23 WTF_MAKE_NONCOPYABLE(WebAssociatedURLLoaderImpl);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 Persistent<DocumentThreadableLoader> m_loader; 62 Persistent<DocumentThreadableLoader> m_loader;
63 63
64 // A ContextLifecycleObserver for cancelling |m_loader| when the Document 64 // A ContextLifecycleObserver for cancelling |m_loader| when the Document
65 // is detached. 65 // is detached.
66 Persistent<Observer> m_observer; 66 Persistent<Observer> m_observer;
67 }; 67 };
68 68
69 } // namespace blink 69 } // namespace blink
70 70
71 #endif 71 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698