| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "core/editing/TextIterator.h" | 44 #include "core/editing/TextIterator.h" |
| 45 #include "core/events/KeyboardEvent.h" | 45 #include "core/events/KeyboardEvent.h" |
| 46 #include "core/events/WheelEvent.h" | 46 #include "core/events/WheelEvent.h" |
| 47 #include "core/frame/FrameHost.h" | 47 #include "core/frame/FrameHost.h" |
| 48 #include "core/frame/FrameView.h" | 48 #include "core/frame/FrameView.h" |
| 49 #include "core/frame/LocalFrame.h" | 49 #include "core/frame/LocalFrame.h" |
| 50 #include "core/frame/Settings.h" | 50 #include "core/frame/Settings.h" |
| 51 #include "core/html/HTMLImportElement.h" | 51 #include "core/html/HTMLImportElement.h" |
| 52 #include "core/html/ime/InputMethodContext.h" | 52 #include "core/html/ime/InputMethodContext.h" |
| 53 #include "gen/sky/core/HTMLNames.h" | 53 #include "gen/sky/core/HTMLNames.h" |
| 54 #include "core/inspector/inspector_backend_mojo.h" | 54 #include "v8_inspector/inspector_backend_mojo.h" |
| 55 #include "core/loader/FrameLoader.h" | 55 #include "core/loader/FrameLoader.h" |
| 56 #include "core/loader/UniqueIdentifier.h" | 56 #include "core/loader/UniqueIdentifier.h" |
| 57 #include "core/page/Chrome.h" | 57 #include "core/page/Chrome.h" |
| 58 #include "core/page/EventHandler.h" | 58 #include "core/page/EventHandler.h" |
| 59 #include "core/page/EventWithHitTestResults.h" | 59 #include "core/page/EventWithHitTestResults.h" |
| 60 #include "core/page/FocusController.h" | 60 #include "core/page/FocusController.h" |
| 61 #include "core/page/Page.h" | 61 #include "core/page/Page.h" |
| 62 #include "core/page/TouchDisambiguation.h" | 62 #include "core/page/TouchDisambiguation.h" |
| 63 #include "core/rendering/compositing/RenderLayerCompositor.h" | 63 #include "core/rendering/compositing/RenderLayerCompositor.h" |
| 64 #include "core/rendering/RenderView.h" | 64 #include "core/rendering/RenderView.h" |
| (...skipping 2198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2263 m_layerTreeView->setVisible(visible); | 2263 m_layerTreeView->setVisible(visible); |
| 2264 } | 2264 } |
| 2265 } | 2265 } |
| 2266 | 2266 |
| 2267 bool WebViewImpl::shouldDisableDesktopWorkarounds() | 2267 bool WebViewImpl::shouldDisableDesktopWorkarounds() |
| 2268 { | 2268 { |
| 2269 return true; | 2269 return true; |
| 2270 } | 2270 } |
| 2271 | 2271 |
| 2272 } // namespace blink | 2272 } // namespace blink |
| OLD | NEW |