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

Side by Side Diff: sky/engine/bindings/core/v8/custom/V8WindowCustom.cpp

Issue 676723003: Remove postMessage, MessageChannel and MessagePort. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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, 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 27 matching lines...) Expand all
38 #include "bindings/core/v8/ScriptController.h" 38 #include "bindings/core/v8/ScriptController.h"
39 #include "bindings/core/v8/ScriptSourceCode.h" 39 #include "bindings/core/v8/ScriptSourceCode.h"
40 #include "bindings/core/v8/SerializedScriptValue.h" 40 #include "bindings/core/v8/SerializedScriptValue.h"
41 #include "bindings/core/v8/V8Binding.h" 41 #include "bindings/core/v8/V8Binding.h"
42 #include "bindings/core/v8/V8EventListener.h" 42 #include "bindings/core/v8/V8EventListener.h"
43 #include "bindings/core/v8/V8EventListenerList.h" 43 #include "bindings/core/v8/V8EventListenerList.h"
44 #include "bindings/core/v8/V8GCForContextDispose.h" 44 #include "bindings/core/v8/V8GCForContextDispose.h"
45 #include "bindings/core/v8/V8HiddenValue.h" 45 #include "bindings/core/v8/V8HiddenValue.h"
46 #include "bindings/core/v8/V8Node.h" 46 #include "bindings/core/v8/V8Node.h"
47 #include "core/dom/ExceptionCode.h" 47 #include "core/dom/ExceptionCode.h"
48 #include "core/dom/MessagePort.h"
49 #include "core/dom/Element.h" 48 #include "core/dom/Element.h"
50 #include "core/dom/Node.h" 49 #include "core/dom/Node.h"
51 #include "core/frame/DOMTimer.h" 50 #include "core/frame/DOMTimer.h"
52 #include "core/frame/DOMWindowTimers.h" 51 #include "core/frame/DOMWindowTimers.h"
53 #include "core/frame/FrameView.h" 52 #include "core/frame/FrameView.h"
54 #include "core/frame/LocalDOMWindow.h" 53 #include "core/frame/LocalDOMWindow.h"
55 #include "core/frame/LocalFrame.h" 54 #include "core/frame/LocalFrame.h"
56 #include "core/frame/Settings.h" 55 #include "core/frame/Settings.h"
57 #include "core/html/HTMLDocument.h" 56 #include "core/html/HTMLDocument.h"
58 #include "core/inspector/ScriptCallStack.h" 57 #include "core/inspector/ScriptCallStack.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 v8::Handle<v8::Context> context = toV8Context(frame, DOMWrapperWorld::curren t(isolate)); 262 v8::Handle<v8::Context> context = toV8Context(frame, DOMWrapperWorld::curren t(isolate));
264 if (context.IsEmpty()) 263 if (context.IsEmpty())
265 return v8Undefined(); 264 return v8Undefined();
266 265
267 v8::Handle<v8::Object> global = context->Global(); 266 v8::Handle<v8::Object> global = context->Global();
268 ASSERT(!global.IsEmpty()); 267 ASSERT(!global.IsEmpty());
269 return global; 268 return global;
270 } 269 }
271 270
272 } // namespace blink 271 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/custom/V8MessagePortCustom.cpp ('k') | sky/engine/bindings/core/v8/custom/custom.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698