| Index: src/compilation-cache.h
|
| diff --git a/src/compilation-cache.h b/src/compilation-cache.h
|
| index 7a236e8fbf09ceab1f07701371fd1a893823f441..414e09e655ca9cc2f00333f4025be9160eae9684 100644
|
| --- a/src/compilation-cache.h
|
| +++ b/src/compilation-cache.h
|
| @@ -99,6 +99,7 @@ class CompilationCacheScript : public CompilationSubCache {
|
| Handle<Object> name,
|
| int line_offset,
|
| int column_offset,
|
| + bool is_shared_cross_origin,
|
| Handle<Context> context);
|
| void Put(Handle<String> source,
|
| Handle<Context> context,
|
| @@ -119,7 +120,8 @@ class CompilationCacheScript : public CompilationSubCache {
|
| bool HasOrigin(Handle<SharedFunctionInfo> function_info,
|
| Handle<Object> name,
|
| int line_offset,
|
| - int column_offset);
|
| + int column_offset,
|
| + bool is_shared_cross_origin);
|
|
|
| void* script_histogram_;
|
| bool script_histogram_initialized_;
|
| @@ -212,6 +214,7 @@ class CompilationCache {
|
| Handle<Object> name,
|
| int line_offset,
|
| int column_offset,
|
| + bool is_shared_cross_origin,
|
| Handle<Context> context);
|
|
|
| // Finds the shared function info for a source string for eval in a
|
|
|