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

Side by Side Diff: third_party/WebKit/Source/core/plugins/PluginView.h

Issue 2718023002: //third_party/WebKit/Source/core: include v8 as a user, not system, header (Closed)
Patch Set: Fix plugin/BUILD.gn deps Created 3 years, 9 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 13 matching lines...) Expand all
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 "core/CoreExport.h" 31 #include "core/CoreExport.h"
32 #include "platform/Widget.h" 32 #include "platform/Widget.h"
33 #include "platform/scroll/ScrollTypes.h" 33 #include "platform/scroll/ScrollTypes.h"
34 #include "v8/include/v8.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
« no previous file with comments | « third_party/WebKit/Source/core/plugins/BUILD.gn ('k') | third_party/WebKit/Source/core/streams/ReadableStreamController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698