| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2011 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "sky/engine/bindings/core/v8/ScriptController.h" | 42 #include "sky/engine/bindings/core/v8/ScriptController.h" |
| 43 #include "sky/engine/bindings/core/v8/V8Binding.h" | 43 #include "sky/engine/bindings/core/v8/V8Binding.h" |
| 44 #include "sky/engine/bindings/core/v8/V8GCForContextDispose.h" | 44 #include "sky/engine/bindings/core/v8/V8GCForContextDispose.h" |
| 45 #include "sky/engine/bindings/core/v8/V8HiddenValue.h" | 45 #include "sky/engine/bindings/core/v8/V8HiddenValue.h" |
| 46 #include "sky/engine/bindings/core/v8/V8Initializer.h" | 46 #include "sky/engine/bindings/core/v8/V8Initializer.h" |
| 47 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h" | 47 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h" |
| 48 #include "sky/engine/core/frame/LocalFrame.h" | 48 #include "sky/engine/core/frame/LocalFrame.h" |
| 49 #include "sky/engine/core/loader/FrameLoaderClient.h" | 49 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 50 #include "sky/engine/platform/ScriptForbiddenScope.h" | 50 #include "sky/engine/platform/ScriptForbiddenScope.h" |
| 51 #include "sky/engine/platform/TraceEvent.h" | 51 #include "sky/engine/platform/TraceEvent.h" |
| 52 #include "sky/engine/platform/heap/Handle.h" | |
| 53 #include "sky/engine/public/platform/Platform.h" | 52 #include "sky/engine/public/platform/Platform.h" |
| 54 #include "sky/engine/wtf/Assertions.h" | 53 #include "sky/engine/wtf/Assertions.h" |
| 55 #include "sky/engine/wtf/OwnPtr.h" | 54 #include "sky/engine/wtf/OwnPtr.h" |
| 56 #include "sky/engine/wtf/StringExtras.h" | 55 #include "sky/engine/wtf/StringExtras.h" |
| 57 #include "sky/engine/wtf/text/CString.h" | 56 #include "sky/engine/wtf/text/CString.h" |
| 58 #include "v8/include/v8-debug.h" | 57 #include "v8/include/v8-debug.h" |
| 59 #include "v8/include/v8.h" | 58 #include "v8/include/v8.h" |
| 60 | 59 |
| 61 namespace blink { | 60 namespace blink { |
| 62 | 61 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 { | 316 { |
| 318 ASSERT(m_world->isMainWorld()); | 317 ASSERT(m_world->isMainWorld()); |
| 319 if (!isGlobalInitialized()) | 318 if (!isGlobalInitialized()) |
| 320 return; | 319 return; |
| 321 if (!isContextInitialized()) | 320 if (!isContextInitialized()) |
| 322 return; | 321 return; |
| 323 updateDocumentProperty(); | 322 updateDocumentProperty(); |
| 324 } | 323 } |
| 325 | 324 |
| 326 } // namespace blink | 325 } // namespace blink |
| OLD | NEW |