OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 if (results) { | 364 if (results) { |
365 for (size_t i = 0; i < result_array->Length(); ++i) { | 365 for (size_t i = 0; i < result_array->Length(); ++i) { |
366 v8::Local<v8::Value> value; | 366 v8::Local<v8::Value> value; |
367 if (!result_array->Get(context, i).ToLocal(&value)) | 367 if (!result_array->Get(context, i).ToLocal(&value)) |
368 return; | 368 return; |
369 results->push_back(value); | 369 results->push_back(value); |
370 } | 370 } |
371 } | 371 } |
372 } | 372 } |
373 | 373 |
| 374 void ScriptController::EnsureIsolatedWorld(int world_id) { |
| 375 RefPtr<DOMWrapperWorld> world = |
| 376 DOMWrapperWorld::EnsureIsolatedWorld(GetIsolate(), world_id); |
| 377 // Make sure the execution context exists. |
| 378 WindowProxy(*world); |
| 379 } |
| 380 |
374 } // namespace blink | 381 } // namespace blink |
OLD | NEW |