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

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

Issue 2804753005: Rewrite references to "wtf/" to "platform/wtf/" in bindings. (Closed)
Patch Set: Created 3 years, 8 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) 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 20 matching lines...) Expand all
31 #ifndef ScriptController_h 31 #ifndef ScriptController_h
32 #define ScriptController_h 32 #define ScriptController_h
33 33
34 #include "bindings/core/v8/SharedPersistent.h" 34 #include "bindings/core/v8/SharedPersistent.h"
35 #include "bindings/core/v8/WindowProxyManager.h" 35 #include "bindings/core/v8/WindowProxyManager.h"
36 #include "core/CoreExport.h" 36 #include "core/CoreExport.h"
37 #include "core/dom/ExecutionContext.h" 37 #include "core/dom/ExecutionContext.h"
38 #include "platform/heap/Handle.h" 38 #include "platform/heap/Handle.h"
39 #include "platform/loader/fetch/AccessControlStatus.h" 39 #include "platform/loader/fetch/AccessControlStatus.h"
40 #include "platform/loader/fetch/CrossOriginAccessControl.h" 40 #include "platform/loader/fetch/CrossOriginAccessControl.h"
41 #include "platform/wtf/HashMap.h"
42 #include "platform/wtf/Noncopyable.h"
43 #include "platform/wtf/Vector.h"
44 #include "platform/wtf/text/TextPosition.h"
41 #include "v8/include/v8.h" 45 #include "v8/include/v8.h"
42 #include "wtf/HashMap.h"
43 #include "wtf/Noncopyable.h"
44 #include "wtf/Vector.h"
45 #include "wtf/text/TextPosition.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 KURL; 51 class KURL;
52 class LocalFrame; 52 class LocalFrame;
53 class PluginView; 53 class PluginView;
54 class ScriptSourceCode; 54 class ScriptSourceCode;
55 class SecurityOrigin; 55 class SecurityOrigin;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 AccessControlStatus, 146 AccessControlStatus,
147 ExecuteScriptPolicy); 147 ExecuteScriptPolicy);
148 148
149 const Member<LocalFrame> m_frame; 149 const Member<LocalFrame> m_frame;
150 const Member<LocalWindowProxyManager> m_windowProxyManager; 150 const Member<LocalWindowProxyManager> m_windowProxyManager;
151 }; 151 };
152 152
153 } // namespace blink 153 } // namespace blink
154 154
155 #endif // ScriptController_h 155 #endif // ScriptController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698