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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 #define V8ScriptRunner_h 27 #define V8ScriptRunner_h
28 28
29 #include <stdint.h> 29 #include <stdint.h>
30 30
31 #include "bindings/core/v8/ScriptState.h" 31 #include "bindings/core/v8/ScriptState.h"
32 #include "bindings/core/v8/ScriptValue.h" 32 #include "bindings/core/v8/ScriptValue.h"
33 #include "bindings/core/v8/V8BindingMacros.h" 33 #include "bindings/core/v8/V8BindingMacros.h"
34 #include "bindings/core/v8/V8CacheOptions.h" 34 #include "bindings/core/v8/V8CacheOptions.h"
35 #include "core/CoreExport.h" 35 #include "core/CoreExport.h"
36 #include "platform/loader/fetch/AccessControlStatus.h" 36 #include "platform/loader/fetch/AccessControlStatus.h"
37 #include "platform/wtf/Allocator.h"
38 #include "platform/wtf/text/TextPosition.h"
39 #include "platform/wtf/text/WTFString.h"
37 #include "v8/include/v8.h" 40 #include "v8/include/v8.h"
38 #include "wtf/Allocator.h"
39 #include "wtf/text/TextPosition.h"
40 #include "wtf/text/WTFString.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class CachedMetadataHandler; 44 class CachedMetadataHandler;
45 class ScriptResource; 45 class ScriptResource;
46 class ScriptSourceCode; 46 class ScriptSourceCode;
47 class ExecutionContext; 47 class ExecutionContext;
48 class ScriptStreamer; 48 class ScriptStreamer;
49 49
50 class CORE_EXPORT V8ScriptRunner final { 50 class CORE_EXPORT V8ScriptRunner final {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 return v8::MaybeLocal<v8::Value>(); 155 return v8::MaybeLocal<v8::Value>();
156 v8::Local<v8::Function> function = functionValue.As<v8::Function>(); 156 v8::Local<v8::Function> function = functionValue.As<v8::Function>();
157 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs, 157 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs,
158 args, isolate); 158 args, isolate);
159 } 159 }
160 }; 160 };
161 161
162 } // namespace blink 162 } // namespace blink
163 163
164 #endif // V8ScriptRunner_h 164 #endif // V8ScriptRunner_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698