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

Side by Side Diff: Source/core/plugins/DOMPluginArray.h

Issue 437213004: wtf/Vector.h included more than necessary (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/plugins/DOMMimeTypeArray.cpp ('k') | Source/core/plugins/DOMPluginArray.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
3 Copyright (C) 2008 Apple Inc. All rights reserved. 3 Copyright (C) 2008 Apple Inc. All rights reserved.
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
(...skipping 10 matching lines...) Expand all
21 #ifndef DOMPluginArray_h 21 #ifndef DOMPluginArray_h
22 #define DOMPluginArray_h 22 #define DOMPluginArray_h
23 23
24 #include "bindings/core/v8/ScriptWrappable.h" 24 #include "bindings/core/v8/ScriptWrappable.h"
25 #include "core/frame/DOMWindowProperty.h" 25 #include "core/frame/DOMWindowProperty.h"
26 #include "core/plugins/DOMPlugin.h" 26 #include "core/plugins/DOMPlugin.h"
27 #include "platform/heap/Handle.h" 27 #include "platform/heap/Handle.h"
28 #include "wtf/Forward.h" 28 #include "wtf/Forward.h"
29 #include "wtf/PassRefPtr.h" 29 #include "wtf/PassRefPtr.h"
30 #include "wtf/RefCounted.h" 30 #include "wtf/RefCounted.h"
31 #include "wtf/Vector.h"
32 31
33 namespace blink { 32 namespace blink {
34 33
35 class LocalFrame; 34 class LocalFrame;
36 class PluginData; 35 class PluginData;
37 36
38 class DOMPluginArray FINAL : public RefCountedWillBeGarbageCollectedFinalized<DO MPluginArray>, public ScriptWrappable, public DOMWindowProperty { 37 class DOMPluginArray FINAL : public RefCountedWillBeGarbageCollectedFinalized<DO MPluginArray>, public ScriptWrappable, public DOMWindowProperty {
39 public: 38 public:
40 static PassRefPtrWillBeRawPtr<DOMPluginArray> create(LocalFrame* frame) 39 static PassRefPtrWillBeRawPtr<DOMPluginArray> create(LocalFrame* frame)
41 { 40 {
(...skipping 11 matching lines...) Expand all
53 void trace(Visitor*) { } 52 void trace(Visitor*) { }
54 53
55 private: 54 private:
56 explicit DOMPluginArray(LocalFrame*); 55 explicit DOMPluginArray(LocalFrame*);
57 PluginData* pluginData() const; 56 PluginData* pluginData() const;
58 }; 57 };
59 58
60 } // namespace blink 59 } // namespace blink
61 60
62 #endif // PluginArray_h 61 #endif // PluginArray_h
OLDNEW
« no previous file with comments | « Source/core/plugins/DOMMimeTypeArray.cpp ('k') | Source/core/plugins/DOMPluginArray.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698