| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 #include "modules/storage/StorageNamespaceController.h" | 98 #include "modules/storage/StorageNamespaceController.h" |
| 99 #include "modules/webgl/WebGLRenderingContext.h" | 99 #include "modules/webgl/WebGLRenderingContext.h" |
| 100 #include "platform/ContextMenu.h" | 100 #include "platform/ContextMenu.h" |
| 101 #include "platform/ContextMenuItem.h" | 101 #include "platform/ContextMenuItem.h" |
| 102 #include "platform/Cursor.h" | 102 #include "platform/Cursor.h" |
| 103 #include "platform/Histogram.h" | 103 #include "platform/Histogram.h" |
| 104 #include "platform/KeyboardCodes.h" | 104 #include "platform/KeyboardCodes.h" |
| 105 #include "platform/PlatformGestureEvent.h" | 105 #include "platform/PlatformGestureEvent.h" |
| 106 #include "platform/PlatformMouseEvent.h" | 106 #include "platform/PlatformMouseEvent.h" |
| 107 #include "platform/RuntimeEnabledFeatures.h" | 107 #include "platform/RuntimeEnabledFeatures.h" |
| 108 #include "platform/TraceEvent.h" | |
| 109 #include "platform/UserGestureIndicator.h" | 108 #include "platform/UserGestureIndicator.h" |
| 110 #include "platform/exported/WebActiveGestureAnimation.h" | 109 #include "platform/exported/WebActiveGestureAnimation.h" |
| 111 #include "platform/fonts/FontCache.h" | 110 #include "platform/fonts/FontCache.h" |
| 112 #include "platform/graphics/Color.h" | 111 #include "platform/graphics/Color.h" |
| 113 #include "platform/graphics/CompositorMutatorClient.h" | 112 #include "platform/graphics/CompositorMutatorClient.h" |
| 114 #include "platform/graphics/FirstPaintInvalidationTracking.h" | 113 #include "platform/graphics/FirstPaintInvalidationTracking.h" |
| 115 #include "platform/graphics/GraphicsContext.h" | 114 #include "platform/graphics/GraphicsContext.h" |
| 116 #include "platform/graphics/Image.h" | 115 #include "platform/graphics/Image.h" |
| 117 #include "platform/graphics/ImageBuffer.h" | 116 #include "platform/graphics/ImageBuffer.h" |
| 118 #include "platform/graphics/gpu/DrawingBuffer.h" | 117 #include "platform/graphics/gpu/DrawingBuffer.h" |
| 119 #include "platform/graphics/paint/DrawingRecorder.h" | 118 #include "platform/graphics/paint/DrawingRecorder.h" |
| 120 #include "platform/image-decoders/ImageDecoder.h" | 119 #include "platform/image-decoders/ImageDecoder.h" |
| 121 #include "platform/scroll/ScrollbarTheme.h" | 120 #include "platform/scroll/ScrollbarTheme.h" |
| 121 #include "platform/tracing/TraceEvent.h" |
| 122 #include "platform/weborigin/SchemeRegistry.h" | 122 #include "platform/weborigin/SchemeRegistry.h" |
| 123 #include "public/platform/Platform.h" | 123 #include "public/platform/Platform.h" |
| 124 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h" | 124 #include "public/platform/WebCompositeAndReadbackAsyncCallback.h" |
| 125 #include "public/platform/WebCompositorSupport.h" | 125 #include "public/platform/WebCompositorSupport.h" |
| 126 #include "public/platform/WebDragData.h" | 126 #include "public/platform/WebDragData.h" |
| 127 #include "public/platform/WebFloatPoint.h" | 127 #include "public/platform/WebFloatPoint.h" |
| 128 #include "public/platform/WebGestureCurve.h" | 128 #include "public/platform/WebGestureCurve.h" |
| 129 #include "public/platform/WebImage.h" | 129 #include "public/platform/WebImage.h" |
| 130 #include "public/platform/WebLayerTreeView.h" | 130 #include "public/platform/WebLayerTreeView.h" |
| 131 #include "public/platform/WebScheduler.h" | 131 #include "public/platform/WebScheduler.h" |
| (...skipping 4473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4605 return nullptr; | 4605 return nullptr; |
| 4606 return focusedFrame; | 4606 return focusedFrame; |
| 4607 } | 4607 } |
| 4608 | 4608 |
| 4609 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const | 4609 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const |
| 4610 { | 4610 { |
| 4611 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr; | 4611 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr; |
| 4612 } | 4612 } |
| 4613 | 4613 |
| 4614 } // namespace blink | 4614 } // namespace blink |
| OLD | NEW |