| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 #include "core/page/PagePopupClient.h" | 84 #include "core/page/PagePopupClient.h" |
| 85 #include "core/page/PointerLockController.h" | 85 #include "core/page/PointerLockController.h" |
| 86 #include "core/page/ScopedPageSuspender.h" | 86 #include "core/page/ScopedPageSuspender.h" |
| 87 #include "core/page/TouchDisambiguation.h" | 87 #include "core/page/TouchDisambiguation.h" |
| 88 #include "core/page/ValidationMessageClientImpl.h" | 88 #include "core/page/ValidationMessageClientImpl.h" |
| 89 #include "core/page/scrolling/TopDocumentRootScrollerController.h" | 89 #include "core/page/scrolling/TopDocumentRootScrollerController.h" |
| 90 #include "core/paint/PaintLayer.h" | 90 #include "core/paint/PaintLayer.h" |
| 91 #include "core/timing/DOMWindowPerformance.h" | 91 #include "core/timing/DOMWindowPerformance.h" |
| 92 #include "core/timing/Performance.h" | 92 #include "core/timing/Performance.h" |
| 93 #include "modules/accessibility/AXObjectCacheImpl.h" | 93 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 94 #include "modules/accessibility/AXObjectImpl.h" | |
| 95 #include "modules/credentialmanager/CredentialManagerClient.h" | 94 #include "modules/credentialmanager/CredentialManagerClient.h" |
| 96 #include "modules/encryptedmedia/MediaKeysController.h" | 95 #include "modules/encryptedmedia/MediaKeysController.h" |
| 97 #include "modules/speech/SpeechRecognitionClientProxy.h" | 96 #include "modules/speech/SpeechRecognitionClientProxy.h" |
| 98 #include "modules/storage/StorageNamespaceController.h" | 97 #include "modules/storage/StorageNamespaceController.h" |
| 99 #include "modules/webdatabase/DatabaseClient.h" | 98 #include "modules/webdatabase/DatabaseClient.h" |
| 100 #include "modules/webgl/WebGLRenderingContext.h" | 99 #include "modules/webgl/WebGLRenderingContext.h" |
| 101 #include "platform/ContextMenu.h" | 100 #include "platform/ContextMenu.h" |
| 102 #include "platform/ContextMenuItem.h" | 101 #include "platform/ContextMenuItem.h" |
| 103 #include "platform/Cursor.h" | 102 #include "platform/Cursor.h" |
| 104 #include "platform/Histogram.h" | 103 #include "platform/Histogram.h" |
| (...skipping 4057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4162 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) | 4161 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) |
| 4163 return nullptr; | 4162 return nullptr; |
| 4164 return focused_frame; | 4163 return focused_frame; |
| 4165 } | 4164 } |
| 4166 | 4165 |
| 4167 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { | 4166 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { |
| 4168 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; | 4167 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; |
| 4169 } | 4168 } |
| 4170 | 4169 |
| 4171 } // namespace blink | 4170 } // namespace blink |
| OLD | NEW |