| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 #include "platform/graphics/ImageBuffer.h" | 86 #include "platform/graphics/ImageBuffer.h" |
| 87 #include "platform/scroll/Scrollbar.h" | 87 #include "platform/scroll/Scrollbar.h" |
| 88 #include "platform/weborigin/SchemeRegistry.h" | 88 #include "platform/weborigin/SchemeRegistry.h" |
| 89 #include "public/platform/Platform.h" | 89 #include "public/platform/Platform.h" |
| 90 #include "public/platform/WebFloatPoint.h" | 90 #include "public/platform/WebFloatPoint.h" |
| 91 #include "public/platform/WebGestureCurve.h" | 91 #include "public/platform/WebGestureCurve.h" |
| 92 #include "public/platform/WebImage.h" | 92 #include "public/platform/WebImage.h" |
| 93 #include "public/platform/WebLayerTreeView.h" | 93 #include "public/platform/WebLayerTreeView.h" |
| 94 #include "public/platform/WebURLRequest.h" | 94 #include "public/platform/WebURLRequest.h" |
| 95 #include "public/platform/WebVector.h" | 95 #include "public/platform/WebVector.h" |
| 96 #include "public/web/WebAXObject.h" | |
| 97 #include "public/web/WebActiveWheelFlingParameters.h" | 96 #include "public/web/WebActiveWheelFlingParameters.h" |
| 98 #include "public/web/WebBeginFrameArgs.h" | 97 #include "public/web/WebBeginFrameArgs.h" |
| 99 #include "public/web/WebFrameClient.h" | 98 #include "public/web/WebFrameClient.h" |
| 100 #include "public/web/WebHitTestResult.h" | 99 #include "public/web/WebHitTestResult.h" |
| 101 #include "public/web/WebMediaPlayerAction.h" | 100 #include "public/web/WebMediaPlayerAction.h" |
| 102 #include "public/web/WebNode.h" | 101 #include "public/web/WebNode.h" |
| 103 #include "public/web/WebRange.h" | 102 #include "public/web/WebRange.h" |
| 104 #include "public/web/WebTextInputInfo.h" | 103 #include "public/web/WebTextInputInfo.h" |
| 105 #include "public/web/WebViewClient.h" | 104 #include "public/web/WebViewClient.h" |
| 106 #include "web/CompositionUnderlineVectorBuilder.h" | 105 #include "web/CompositionUnderlineVectorBuilder.h" |
| (...skipping 2579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2686 m_layerTreeView->setVisible(visible); | 2685 m_layerTreeView->setVisible(visible); |
| 2687 } | 2686 } |
| 2688 } | 2687 } |
| 2689 | 2688 |
| 2690 bool WebViewImpl::shouldDisableDesktopWorkarounds() | 2689 bool WebViewImpl::shouldDisableDesktopWorkarounds() |
| 2691 { | 2690 { |
| 2692 return true; | 2691 return true; |
| 2693 } | 2692 } |
| 2694 | 2693 |
| 2695 } // namespace blink | 2694 } // namespace blink |
| OLD | NEW |