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

Side by Side Diff: third_party/WebKit/Source/web/PageOverlay.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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef PageOverlay_h 29 #ifndef PageOverlay_h
30 #define PageOverlay_h 30 #define PageOverlay_h
31 31
32 #include <memory>
32 #include "platform/graphics/GraphicsLayer.h" 33 #include "platform/graphics/GraphicsLayer.h"
33 #include "platform/graphics/GraphicsLayerClient.h" 34 #include "platform/graphics/GraphicsLayerClient.h"
34 #include "platform/graphics/paint/DisplayItemClient.h" 35 #include "platform/graphics/paint/DisplayItemClient.h"
35 #include "web/WebExport.h" 36 #include "web/WebExport.h"
36 #include "wtf/text/WTFString.h" 37 #include "wtf/text/WTFString.h"
37 #include <memory>
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class GraphicsContext; 41 class GraphicsContext;
42 class WebLocalFrameImpl; 42 class WebLocalFrameImpl;
43 43
44 // Manages a layer that is overlaid on a WebLocalFrame's content. 44 // Manages a layer that is overlaid on a WebLocalFrame's content.
45 class WEB_EXPORT PageOverlay : public GraphicsLayerClient, 45 class WEB_EXPORT PageOverlay : public GraphicsLayerClient,
46 public DisplayItemClient { 46 public DisplayItemClient {
47 public: 47 public:
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 PageOverlay(WebLocalFrameImpl*, std::unique_ptr<PageOverlay::Delegate>); 83 PageOverlay(WebLocalFrameImpl*, std::unique_ptr<PageOverlay::Delegate>);
84 84
85 Persistent<WebLocalFrameImpl> m_frameImpl; 85 Persistent<WebLocalFrameImpl> m_frameImpl;
86 std::unique_ptr<PageOverlay::Delegate> m_delegate; 86 std::unique_ptr<PageOverlay::Delegate> m_delegate;
87 std::unique_ptr<GraphicsLayer> m_layer; 87 std::unique_ptr<GraphicsLayer> m_layer;
88 }; 88 };
89 89
90 } // namespace blink 90 } // namespace blink
91 91
92 #endif // PageOverlay_h 92 #endif // PageOverlay_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/LocalFileSystemClient.cpp ('k') | third_party/WebKit/Source/web/PageOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698