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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptController.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: 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) 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 30 matching lines...) Expand all
41 #include "wtf/HashMap.h" 41 #include "wtf/HashMap.h"
42 #include "wtf/Noncopyable.h" 42 #include "wtf/Noncopyable.h"
43 #include "wtf/Vector.h" 43 #include "wtf/Vector.h"
44 #include "wtf/text/TextPosition.h" 44 #include "wtf/text/TextPosition.h"
45 #include <v8.h> 45 #include <v8.h>
46 46
47 namespace blink { 47 namespace blink {
48 48
49 class DOMWrapperWorld; 49 class DOMWrapperWorld;
50 class Element; 50 class Element;
51 class ExecutionContext;
52 class HTMLDocument; 51 class HTMLDocument;
53 class HTMLPlugInElement;
54 class KURL; 52 class KURL;
55 class ScriptState; 53 class ScriptState;
56 class ScriptSourceCode; 54 class ScriptSourceCode;
57 class SecurityOrigin; 55 class SecurityOrigin;
58 class WindowProxy; 56 class WindowProxy;
59 class Widget; 57 class Widget;
60 58
61 typedef WTF::Vector<v8::Extension*> V8Extensions; 59 typedef WTF::Vector<v8::Extension*> V8Extensions;
62 60
63 enum ReasonForCallingCanExecuteScripts { 61 enum ReasonForCallingCanExecuteScripts {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 v8::Local<v8::Value> evaluateScriptInMainWorld(const ScriptSourceCode&, 165 v8::Local<v8::Value> evaluateScriptInMainWorld(const ScriptSourceCode&,
168 AccessControlStatus, 166 AccessControlStatus,
169 ExecuteScriptPolicy); 167 ExecuteScriptPolicy);
170 168
171 Member<WindowProxyManager> m_windowProxyManager; 169 Member<WindowProxyManager> m_windowProxyManager;
172 }; 170 };
173 171
174 } // namespace blink 172 } // namespace blink
175 173
176 #endif // ScriptController_h 174 #endif // ScriptController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698