| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 , m_fixedLayoutSizeLock(false) | 154 , m_fixedLayoutSizeLock(false) |
| 155 , m_zoomLevel(0) | 155 , m_zoomLevel(0) |
| 156 , m_minimumZoomLevel(zoomFactorToZoomLevel(minTextSizeMultiplier)) | 156 , m_minimumZoomLevel(zoomFactorToZoomLevel(minTextSizeMultiplier)) |
| 157 , m_maximumZoomLevel(zoomFactorToZoomLevel(maxTextSizeMultiplier)) | 157 , m_maximumZoomLevel(zoomFactorToZoomLevel(maxTextSizeMultiplier)) |
| 158 , m_doingDragAndDrop(false) | 158 , m_doingDragAndDrop(false) |
| 159 , m_ignoreInputEvents(false) | 159 , m_ignoreInputEvents(false) |
| 160 , m_compositorDeviceScaleFactorOverride(0) | 160 , m_compositorDeviceScaleFactorOverride(0) |
| 161 , m_rootLayerScale(1) | 161 , m_rootLayerScale(1) |
| 162 , m_suppressNextKeypressEvent(false) | 162 , m_suppressNextKeypressEvent(false) |
| 163 , m_imeAcceptEvents(true) | 163 , m_imeAcceptEvents(true) |
| 164 , m_operationsAllowed(WebDragOperationNone) | |
| 165 , m_dragOperation(WebDragOperationNone) | |
| 166 , m_isTransparent(false) | 164 , m_isTransparent(false) |
| 167 , m_tabsToLinks(false) | 165 , m_tabsToLinks(false) |
| 168 , m_layerTreeView(0) | 166 , m_layerTreeView(0) |
| 169 , m_rootLayer(0) | 167 , m_rootLayer(0) |
| 170 , m_rootGraphicsLayer(0) | 168 , m_rootGraphicsLayer(0) |
| 171 , m_rootTransformLayer(0) | 169 , m_rootTransformLayer(0) |
| 172 , m_graphicsLayerFactory(adoptPtr(new GraphicsLayerFactoryChromium(this))) | 170 , m_graphicsLayerFactory(adoptPtr(new GraphicsLayerFactoryChromium(this))) |
| 173 , m_isAcceleratedCompositingActive(false) | 171 , m_isAcceleratedCompositingActive(false) |
| 174 , m_layerTreeViewCommitsDeferred(false) | 172 , m_layerTreeViewCommitsDeferred(false) |
| 175 , m_layerTreeViewClosed(false) | 173 , m_layerTreeViewClosed(false) |
| (...skipping 2196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2372 m_layerTreeView->setVisible(visible); | 2370 m_layerTreeView->setVisible(visible); |
| 2373 } | 2371 } |
| 2374 } | 2372 } |
| 2375 | 2373 |
| 2376 bool WebViewImpl::shouldDisableDesktopWorkarounds() | 2374 bool WebViewImpl::shouldDisableDesktopWorkarounds() |
| 2377 { | 2375 { |
| 2378 return true; | 2376 return true; |
| 2379 } | 2377 } |
| 2380 | 2378 |
| 2381 } // namespace blink | 2379 } // namespace blink |
| OLD | NEW |