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

Side by Side Diff: third_party/WebKit/Source/core/plugins/PluginView.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) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 10 matching lines...) Expand all
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
25 * DAMAGE. 25 * DAMAGE.
26 */ 26 */
27 27
28 #ifndef PluginView_h 28 #ifndef PluginView_h
29 #define PluginView_h 29 #define PluginView_h
30 30
31 #include <v8.h>
31 #include "core/CoreExport.h" 32 #include "core/CoreExport.h"
32 #include "platform/Widget.h" 33 #include "platform/Widget.h"
33 #include "platform/scroll/ScrollTypes.h" 34 #include "platform/scroll/ScrollTypes.h"
34 #include "wtf/text/WTFString.h" 35 #include "wtf/text/WTFString.h"
35 #include <v8.h>
36 36
37 namespace blink { 37 namespace blink {
38 class WebLayer; 38 class WebLayer;
39 } 39 }
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class ResourceResponse; 43 class ResourceResponse;
44 44
45 class CORE_EXPORT PluginView : public Widget { 45 class CORE_EXPORT PluginView : public Widget {
(...skipping 21 matching lines...) Expand all
67 67
68 DEFINE_TYPE_CASTS(PluginView, 68 DEFINE_TYPE_CASTS(PluginView,
69 Widget, 69 Widget,
70 widget, 70 widget,
71 widget->isPluginView(), 71 widget->isPluginView(),
72 widget.isPluginView()); 72 widget.isPluginView());
73 73
74 } // namespace blink 74 } // namespace blink
75 75
76 #endif // PluginView_h 76 #endif // PluginView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698