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

Side by Side Diff: third_party/WebKit/Source/core/inspector/DevToolsHost.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 19 matching lines...) Expand all
30 #define DevToolsHost_h 30 #define DevToolsHost_h
31 31
32 #include "bindings/core/v8/ScriptWrappable.h" 32 #include "bindings/core/v8/ScriptWrappable.h"
33 #include "core/CoreExport.h" 33 #include "core/CoreExport.h"
34 #include "wtf/Vector.h" 34 #include "wtf/Vector.h"
35 #include "wtf/text/WTFString.h" 35 #include "wtf/text/WTFString.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ContextMenuItem; 39 class ContextMenuItem;
40 class Event;
41 class FrontendMenuProvider; 40 class FrontendMenuProvider;
42 class InspectorFrontendClient; 41 class InspectorFrontendClient;
43 class LocalFrame; 42 class LocalFrame;
44 43
45 class CORE_EXPORT DevToolsHost final 44 class CORE_EXPORT DevToolsHost final
46 : public GarbageCollectedFinalized<DevToolsHost>, 45 : public GarbageCollectedFinalized<DevToolsHost>,
47 public ScriptWrappable { 46 public ScriptWrappable {
48 DEFINE_WRAPPERTYPEINFO(); 47 DEFINE_WRAPPERTYPEINFO();
49 48
50 public: 49 public:
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void evaluateScript(const String&); 87 void evaluateScript(const String&);
89 88
90 InspectorFrontendClient* m_client; 89 InspectorFrontendClient* m_client;
91 Member<LocalFrame> m_frontendFrame; 90 Member<LocalFrame> m_frontendFrame;
92 Member<FrontendMenuProvider> m_menuProvider; 91 Member<FrontendMenuProvider> m_menuProvider;
93 }; 92 };
94 93
95 } // namespace blink 94 } // namespace blink
96 95
97 #endif // DevToolsHost_h 96 #endif // DevToolsHost_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698