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

Side by Side Diff: Source/core/frame/Navigator.h

Issue 584273002: Clean up forward declarations in Source/core/frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/frame/LocalFrame.h ('k') | Source/core/frame/SettingsDelegate.h » ('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 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 20 matching lines...) Expand all
31 #include "wtf/Forward.h" 31 #include "wtf/Forward.h"
32 #include "wtf/PassRefPtr.h" 32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 #include "wtf/RefPtr.h" 34 #include "wtf/RefPtr.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class DOMMimeTypeArray; 38 class DOMMimeTypeArray;
39 class DOMPluginArray; 39 class DOMPluginArray;
40 class LocalFrame; 40 class LocalFrame;
41 class PluginData;
42 41
43 typedef int ExceptionCode; 42 typedef int ExceptionCode;
44 43
45 class Navigator FINAL 44 class Navigator FINAL
46 : public RefCountedWillBeGarbageCollectedFinalized<Navigator> 45 : public RefCountedWillBeGarbageCollectedFinalized<Navigator>
47 , public NavigatorCPU 46 , public NavigatorCPU
48 , public NavigatorID 47 , public NavigatorID
49 , public NavigatorLanguage 48 , public NavigatorLanguage
50 , public NavigatorOnLine 49 , public NavigatorOnLine
51 , public ScriptWrappable 50 , public ScriptWrappable
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 private: 82 private:
84 explicit Navigator(LocalFrame*); 83 explicit Navigator(LocalFrame*);
85 84
86 mutable RefPtrWillBeMember<DOMPluginArray> m_plugins; 85 mutable RefPtrWillBeMember<DOMPluginArray> m_plugins;
87 mutable RefPtrWillBeMember<DOMMimeTypeArray> m_mimeTypes; 86 mutable RefPtrWillBeMember<DOMMimeTypeArray> m_mimeTypes;
88 }; 87 };
89 88
90 } // namespace blink 89 } // namespace blink
91 90
92 #endif // Navigator_h 91 #endif // Navigator_h
OLDNEW
« no previous file with comments | « Source/core/frame/LocalFrame.h ('k') | Source/core/frame/SettingsDelegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698