| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 #include "core/frame/RemoteFrame.h" | 59 #include "core/frame/RemoteFrame.h" |
| 60 #include "core/frame/Settings.h" | 60 #include "core/frame/Settings.h" |
| 61 #include "core/frame/SmartClip.h" | 61 #include "core/frame/SmartClip.h" |
| 62 #include "core/frame/TopControls.h" | 62 #include "core/frame/TopControls.h" |
| 63 #include "core/html/HTMLInputElement.h" | 63 #include "core/html/HTMLInputElement.h" |
| 64 #include "core/html/HTMLMediaElement.h" | 64 #include "core/html/HTMLMediaElement.h" |
| 65 #include "core/html/HTMLPlugInElement.h" | 65 #include "core/html/HTMLPlugInElement.h" |
| 66 #include "core/html/HTMLTextAreaElement.h" | 66 #include "core/html/HTMLTextAreaElement.h" |
| 67 #include "core/html/canvas/WebGLRenderingContext.h" | 67 #include "core/html/canvas/WebGLRenderingContext.h" |
| 68 #include "core/html/forms/PopupMenuClient.h" | 68 #include "core/html/forms/PopupMenuClient.h" |
| 69 #include "core/input/EventHandler.h" |
| 69 #include "core/layout/LayoutPart.h" | 70 #include "core/layout/LayoutPart.h" |
| 70 #include "core/layout/LayoutView.h" | 71 #include "core/layout/LayoutView.h" |
| 71 #include "core/layout/TextAutosizer.h" | 72 #include "core/layout/TextAutosizer.h" |
| 72 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 73 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
| 73 #include "core/loader/DocumentLoader.h" | 74 #include "core/loader/DocumentLoader.h" |
| 74 #include "core/loader/FrameLoader.h" | 75 #include "core/loader/FrameLoader.h" |
| 75 #include "core/page/ContextMenuController.h" | 76 #include "core/page/ContextMenuController.h" |
| 76 #include "core/page/ContextMenuProvider.h" | 77 #include "core/page/ContextMenuProvider.h" |
| 77 #include "core/page/DragController.h" | 78 #include "core/page/DragController.h" |
| 78 #include "core/page/DragData.h" | 79 #include "core/page/DragData.h" |
| 79 #include "core/page/DragSession.h" | 80 #include "core/page/DragSession.h" |
| 80 #include "core/page/EventHandler.h" | |
| 81 #include "core/page/FocusController.h" | 81 #include "core/page/FocusController.h" |
| 82 #include "core/page/FrameTree.h" | 82 #include "core/page/FrameTree.h" |
| 83 #include "core/page/Page.h" | 83 #include "core/page/Page.h" |
| 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/ScopedPageLoadDeferrer.h" | 86 #include "core/page/ScopedPageLoadDeferrer.h" |
| 87 #include "core/page/TouchDisambiguation.h" | 87 #include "core/page/TouchDisambiguation.h" |
| 88 #include "core/paint/DeprecatedPaintLayer.h" | 88 #include "core/paint/DeprecatedPaintLayer.h" |
| 89 #include "core/timing/DOMWindowPerformance.h" | 89 #include "core/timing/DOMWindowPerformance.h" |
| 90 #include "core/timing/Performance.h" | 90 #include "core/timing/Performance.h" |
| (...skipping 4314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4405 { | 4405 { |
| 4406 WebGLRenderingContext::forceNextWebGLContextCreationToFail(); | 4406 WebGLRenderingContext::forceNextWebGLContextCreationToFail(); |
| 4407 } | 4407 } |
| 4408 | 4408 |
| 4409 void WebViewImpl::forceNextDrawingBufferCreationToFail() | 4409 void WebViewImpl::forceNextDrawingBufferCreationToFail() |
| 4410 { | 4410 { |
| 4411 DrawingBuffer::forceNextDrawingBufferCreationToFail(); | 4411 DrawingBuffer::forceNextDrawingBufferCreationToFail(); |
| 4412 } | 4412 } |
| 4413 | 4413 |
| 4414 } // namespace blink | 4414 } // namespace blink |
| OLD | NEW |