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

Side by Side Diff: sky/engine/web/WebLocalFrameImpl.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
« no previous file with comments | « sky/engine/web/WebDOMMessageEvent.cpp ('k') | sky/engine/web/WebSerializedScriptValue.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 #include "bindings/core/v8/DOMWrapperWorld.h" 75 #include "bindings/core/v8/DOMWrapperWorld.h"
76 #include "bindings/core/v8/ExceptionState.h" 76 #include "bindings/core/v8/ExceptionState.h"
77 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 77 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
78 #include "bindings/core/v8/ScriptController.h" 78 #include "bindings/core/v8/ScriptController.h"
79 #include "bindings/core/v8/ScriptSourceCode.h" 79 #include "bindings/core/v8/ScriptSourceCode.h"
80 #include "bindings/core/v8/ScriptValue.h" 80 #include "bindings/core/v8/ScriptValue.h"
81 #include "bindings/core/v8/V8GCController.h" 81 #include "bindings/core/v8/V8GCController.h"
82 #include "bindings/core/v8/V8PerIsolateData.h" 82 #include "bindings/core/v8/V8PerIsolateData.h"
83 #include "core/dom/Document.h" 83 #include "core/dom/Document.h"
84 #include "core/dom/MessagePort.h"
85 #include "core/dom/Node.h" 84 #include "core/dom/Node.h"
86 #include "core/dom/NodeTraversal.h" 85 #include "core/dom/NodeTraversal.h"
87 #include "core/dom/shadow/ShadowRoot.h" 86 #include "core/dom/shadow/ShadowRoot.h"
88 #include "core/editing/Editor.h" 87 #include "core/editing/Editor.h"
89 #include "core/editing/FrameSelection.h" 88 #include "core/editing/FrameSelection.h"
90 #include "core/editing/InputMethodController.h" 89 #include "core/editing/InputMethodController.h"
91 #include "core/editing/PlainTextRange.h" 90 #include "core/editing/PlainTextRange.h"
92 #include "core/editing/SpellChecker.h" 91 #include "core/editing/SpellChecker.h"
93 #include "core/editing/TextAffinity.h" 92 #include "core/editing/TextAffinity.h"
94 #include "core/editing/TextIterator.h" 93 #include "core/editing/TextIterator.h"
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 845
847 void WebLocalFrameImpl::invalidateAll() const 846 void WebLocalFrameImpl::invalidateAll() const
848 { 847 {
849 ASSERT(frame() && frame()->view()); 848 ASSERT(frame() && frame()->view());
850 FrameView* view = frame()->view(); 849 FrameView* view = frame()->view();
851 view->invalidateRect(view->frameRect()); 850 view->invalidateRect(view->frameRect());
852 invalidateScrollbar(); 851 invalidateScrollbar();
853 } 852 }
854 853
855 } // namespace blink 854 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/web/WebDOMMessageEvent.cpp ('k') | sky/engine/web/WebSerializedScriptValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698