| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 #include "core/editing/spellcheck/SpellCheckRequester.h" | 73 #include "core/editing/spellcheck/SpellCheckRequester.h" |
| 74 #include "core/editing/spellcheck/SpellChecker.h" | 74 #include "core/editing/spellcheck/SpellChecker.h" |
| 75 #include "core/fetch/MemoryCache.h" | 75 #include "core/fetch/MemoryCache.h" |
| 76 #include "core/fetch/ResourceFetcher.h" | 76 #include "core/fetch/ResourceFetcher.h" |
| 77 #include "core/frame/EventHandlerRegistry.h" | 77 #include "core/frame/EventHandlerRegistry.h" |
| 78 #include "core/frame/FrameConsole.h" | 78 #include "core/frame/FrameConsole.h" |
| 79 #include "core/frame/FrameView.h" | 79 #include "core/frame/FrameView.h" |
| 80 #include "core/frame/LocalDOMWindow.h" | 80 #include "core/frame/LocalDOMWindow.h" |
| 81 #include "core/frame/LocalFrame.h" | 81 #include "core/frame/LocalFrame.h" |
| 82 #include "core/frame/Settings.h" | 82 #include "core/frame/Settings.h" |
| 83 #include "core/frame/VisualViewport.h" |
| 83 #include "core/html/HTMLContentElement.h" | 84 #include "core/html/HTMLContentElement.h" |
| 84 #include "core/html/HTMLIFrameElement.h" | 85 #include "core/html/HTMLIFrameElement.h" |
| 85 #include "core/html/HTMLImageElement.h" | 86 #include "core/html/HTMLImageElement.h" |
| 86 #include "core/html/HTMLInputElement.h" | 87 #include "core/html/HTMLInputElement.h" |
| 87 #include "core/html/HTMLMediaElement.h" | 88 #include "core/html/HTMLMediaElement.h" |
| 88 #include "core/html/HTMLSelectElement.h" | 89 #include "core/html/HTMLSelectElement.h" |
| 89 #include "core/html/HTMLTextAreaElement.h" | 90 #include "core/html/HTMLTextAreaElement.h" |
| 90 #include "core/html/canvas/CanvasFontCache.h" | 91 #include "core/html/canvas/CanvasFontCache.h" |
| 91 #include "core/html/canvas/CanvasRenderingContext.h" | 92 #include "core/html/canvas/CanvasRenderingContext.h" |
| 92 #include "core/html/forms/FormController.h" | 93 #include "core/html/forms/FormController.h" |
| (...skipping 2495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2588 } | 2589 } |
| 2589 | 2590 |
| 2590 String Internals::getProgrammaticScrollAnimationState(Node* node) const | 2591 String Internals::getProgrammaticScrollAnimationState(Node* node) const |
| 2591 { | 2592 { |
| 2592 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) | 2593 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) |
| 2593 return scrollableArea->programmaticScrollAnimator().runStateAsText(); | 2594 return scrollableArea->programmaticScrollAnimator().runStateAsText(); |
| 2594 return String(); | 2595 return String(); |
| 2595 } | 2596 } |
| 2596 | 2597 |
| 2597 } // namespace blink | 2598 } // namespace blink |
| OLD | NEW |