| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #include "core/dom/Node.h" | 76 #include "core/dom/Node.h" |
| 77 #include "core/html/HTMLInputElement.h" | 77 #include "core/html/HTMLInputElement.h" |
| 78 #include "core/loader/DocumentLoader.h" | 78 #include "core/loader/DocumentLoader.h" |
| 79 #include "core/loader/FrameLoadRequest.h" | 79 #include "core/loader/FrameLoadRequest.h" |
| 80 #include "core/frame/Console.h" | 80 #include "core/frame/Console.h" |
| 81 #include "core/frame/FrameView.h" | 81 #include "core/frame/FrameView.h" |
| 82 #include "core/page/Page.h" | 82 #include "core/page/Page.h" |
| 83 #include "core/page/PagePopupDriver.h" | 83 #include "core/page/PagePopupDriver.h" |
| 84 #include "core/page/Settings.h" | 84 #include "core/page/Settings.h" |
| 85 #include "core/page/WindowFeatures.h" | 85 #include "core/page/WindowFeatures.h" |
| 86 #include "core/platform/Cursor.h" | |
| 87 #include "core/rendering/HitTestResult.h" | 86 #include "core/rendering/HitTestResult.h" |
| 88 #include "core/rendering/RenderWidget.h" | 87 #include "core/rendering/RenderWidget.h" |
| 89 #include "modules/geolocation/Geolocation.h" | 88 #include "modules/geolocation/Geolocation.h" |
| 90 #include "platform/ColorChooser.h" | 89 #include "platform/ColorChooser.h" |
| 91 #include "platform/ColorChooserClient.h" | 90 #include "platform/ColorChooserClient.h" |
| 91 #include "platform/Cursor.h" |
| 92 #include "platform/DateTimeChooser.h" | 92 #include "platform/DateTimeChooser.h" |
| 93 #include "platform/FileChooser.h" | 93 #include "platform/FileChooser.h" |
| 94 #include "platform/PlatformScreen.h" | 94 #include "platform/PlatformScreen.h" |
| 95 #include "platform/exported/WrappedResourceRequest.h" | 95 #include "platform/exported/WrappedResourceRequest.h" |
| 96 #include "platform/geometry/FloatRect.h" | 96 #include "platform/geometry/FloatRect.h" |
| 97 #include "platform/geometry/IntRect.h" | 97 #include "platform/geometry/IntRect.h" |
| 98 #include "platform/graphics/GraphicsLayer.h" | 98 #include "platform/graphics/GraphicsLayer.h" |
| 99 #include "platform/weborigin/SecurityOrigin.h" | 99 #include "platform/weborigin/SecurityOrigin.h" |
| 100 #include "public/platform/Platform.h" | 100 #include "public/platform/Platform.h" |
| 101 #include "public/platform/WebCursorInfo.h" | 101 #include "public/platform/WebCursorInfo.h" |
| (...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 { | 1042 { |
| 1043 } | 1043 } |
| 1044 | 1044 |
| 1045 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) | 1045 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) |
| 1046 { | 1046 { |
| 1047 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); | 1047 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); |
| 1048 } | 1048 } |
| 1049 #endif | 1049 #endif |
| 1050 | 1050 |
| 1051 } // namespace blink | 1051 } // namespace blink |
| OLD | NEW |