| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 #include "core/frame/Console.h" | 78 #include "core/frame/Console.h" |
| 79 #include "core/frame/FrameView.h" | 79 #include "core/frame/FrameView.h" |
| 80 #include "core/page/Page.h" | 80 #include "core/page/Page.h" |
| 81 #include "core/page/PagePopupDriver.h" | 81 #include "core/page/PagePopupDriver.h" |
| 82 #include "core/page/Settings.h" | 82 #include "core/page/Settings.h" |
| 83 #include "core/page/WindowFeatures.h" | 83 #include "core/page/WindowFeatures.h" |
| 84 #include "core/platform/ColorChooser.h" | 84 #include "core/platform/ColorChooser.h" |
| 85 #include "core/platform/ColorChooserClient.h" | 85 #include "core/platform/ColorChooserClient.h" |
| 86 #include "core/platform/Cursor.h" | 86 #include "core/platform/Cursor.h" |
| 87 #include "core/platform/DateTimeChooser.h" | 87 #include "core/platform/DateTimeChooser.h" |
| 88 #include "core/platform/PlatformScreen.h" | |
| 89 #include "core/platform/chromium/support/WrappedResourceRequest.h" | 88 #include "core/platform/chromium/support/WrappedResourceRequest.h" |
| 90 #include "core/platform/graphics/GraphicsLayer.h" | 89 #include "core/platform/graphics/GraphicsLayer.h" |
| 91 #include "core/rendering/HitTestResult.h" | 90 #include "core/rendering/HitTestResult.h" |
| 92 #include "core/rendering/RenderWidget.h" | 91 #include "core/rendering/RenderWidget.h" |
| 93 #include "modules/geolocation/Geolocation.h" | 92 #include "modules/geolocation/Geolocation.h" |
| 94 #include "platform/FileChooser.h" | 93 #include "platform/FileChooser.h" |
| 94 #include "platform/PlatformScreen.h" |
| 95 #include "platform/geometry/FloatRect.h" | 95 #include "platform/geometry/FloatRect.h" |
| 96 #include "platform/geometry/IntRect.h" | 96 #include "platform/geometry/IntRect.h" |
| 97 #include "public/platform/Platform.h" | 97 #include "public/platform/Platform.h" |
| 98 #include "public/platform/WebRect.h" | 98 #include "public/platform/WebRect.h" |
| 99 #include "public/platform/WebURLRequest.h" | 99 #include "public/platform/WebURLRequest.h" |
| 100 #include "weborigin/SecurityOrigin.h" | 100 #include "weborigin/SecurityOrigin.h" |
| 101 #include "wtf/text/CString.h" | 101 #include "wtf/text/CString.h" |
| 102 #include "wtf/text/StringBuilder.h" | 102 #include "wtf/text/StringBuilder.h" |
| 103 #include "wtf/text/StringConcatenate.h" | 103 #include "wtf/text/StringConcatenate.h" |
| 104 #include "wtf/unicode/CharacterNames.h" | 104 #include "wtf/unicode/CharacterNames.h" |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 { | 1004 { |
| 1005 } | 1005 } |
| 1006 | 1006 |
| 1007 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) | 1007 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) |
| 1008 { | 1008 { |
| 1009 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); | 1009 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); |
| 1010 } | 1010 } |
| 1011 #endif | 1011 #endif |
| 1012 | 1012 |
| 1013 } // namespace WebKit | 1013 } // namespace WebKit |
| OLD | NEW |