| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "FrameView.h" | 43 #include "FrameView.h" |
| 44 #include "HTMLCollection.h" | 44 #include "HTMLCollection.h" |
| 45 #include "HTMLDocument.h" | 45 #include "HTMLDocument.h" |
| 46 #include "Location.h" | 46 #include "Location.h" |
| 47 #include "MediaPlayer.h" | 47 #include "MediaPlayer.h" |
| 48 #include "MessagePort.h" | 48 #include "MessagePort.h" |
| 49 #include "Page.h" | 49 #include "Page.h" |
| 50 #include "PlatformScreen.h" | 50 #include "PlatformScreen.h" |
| 51 #include "ScheduledAction.h" | 51 #include "ScheduledAction.h" |
| 52 #include "ScriptCallStack.h" | 52 #include "ScriptCallStack.h" |
| 53 #include "ScriptController.h" |
| 53 #include "ScriptSourceCode.h" | 54 #include "ScriptSourceCode.h" |
| 54 #include "SerializedScriptValue.h" | 55 #include "SerializedScriptValue.h" |
| 55 #include "Settings.h" | 56 #include "Settings.h" |
| 56 #include "SharedWorkerRepository.h" | 57 #include "SharedWorkerRepository.h" |
| 57 #include "Storage.h" | 58 #include "Storage.h" |
| 58 #include "V8Binding.h" | 59 #include "V8Binding.h" |
| 59 #include "V8EventListener.h" | 60 #include "V8EventListener.h" |
| 60 #include "V8EventListenerList.h" | 61 #include "V8EventListenerList.h" |
| 61 #include "V8GCForContextDispose.h" | 62 #include "V8GCForContextDispose.h" |
| 62 #include "V8HiddenPropertyName.h" | 63 #include "V8HiddenPropertyName.h" |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 ASSERT(!global.IsEmpty()); | 611 ASSERT(!global.IsEmpty()); |
| 611 return global; | 612 return global; |
| 612 } | 613 } |
| 613 | 614 |
| 614 v8::Handle<v8::Value> toV8ForMainWorld(DOMWindow* window, v8::Handle<v8::Object>
creationContext, v8::Isolate* isolate) | 615 v8::Handle<v8::Value> toV8ForMainWorld(DOMWindow* window, v8::Handle<v8::Object>
creationContext, v8::Isolate* isolate) |
| 615 { | 616 { |
| 616 return toV8(window, creationContext, isolate); | 617 return toV8(window, creationContext, isolate); |
| 617 } | 618 } |
| 618 | 619 |
| 619 } // namespace WebCore | 620 } // namespace WebCore |
| OLD | NEW |