| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |