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 26 matching lines...) Expand all Loading... |
37 #if ENABLE(INPUT_TYPE_COLOR) | 37 #if ENABLE(INPUT_TYPE_COLOR) |
38 #include "core/platform/ColorChooser.h" | 38 #include "core/platform/ColorChooser.h" |
39 #include "core/platform/ColorChooserClient.h" | 39 #include "core/platform/ColorChooserClient.h" |
40 #if ENABLE(PAGE_POPUP) | 40 #if ENABLE(PAGE_POPUP) |
41 #include "ColorChooserPopupUIController.h" | 41 #include "ColorChooserPopupUIController.h" |
42 #else | 42 #else |
43 #include "ColorChooserUIController.h" | 43 #include "ColorChooserUIController.h" |
44 #endif | 44 #endif |
45 #endif | 45 #endif |
46 #include "DateTimeChooserImpl.h" | 46 #include "DateTimeChooserImpl.h" |
47 #include "Document.h" | |
48 #include "ExternalDateTimeChooser.h" | 47 #include "ExternalDateTimeChooser.h" |
49 #include "ExternalPopupMenu.h" | 48 #include "ExternalPopupMenu.h" |
50 #include "Geolocation.h" | 49 #include "Geolocation.h" |
51 #include "HTMLInputElement.h" | 50 #include "HTMLInputElement.h" |
52 #include "HTMLNames.h" | 51 #include "HTMLNames.h" |
53 #include "Node.h" | |
54 #include "ScriptController.h" | 52 #include "ScriptController.h" |
55 #include "TextFieldDecorationElement.h" | 53 #include "TextFieldDecorationElement.h" |
56 #include "WebAccessibilityObject.h" | 54 #include "WebAccessibilityObject.h" |
57 #include "WebAutofillClient.h" | 55 #include "WebAutofillClient.h" |
| 56 #include "core/dom/Document.h" |
| 57 #include "core/dom/Node.h" |
58 #include "core/loader/DocumentLoader.h" | 58 #include "core/loader/DocumentLoader.h" |
59 #include "core/loader/FrameLoadRequest.h" | 59 #include "core/loader/FrameLoadRequest.h" |
60 #include "core/loader/NavigationAction.h" | 60 #include "core/loader/NavigationAction.h" |
61 #include "core/page/Console.h" | 61 #include "core/page/Console.h" |
62 #include "core/page/FrameView.h" | 62 #include "core/page/FrameView.h" |
63 #include "core/page/Page.h" | 63 #include "core/page/Page.h" |
64 #include "core/page/PagePopupDriver.h" | 64 #include "core/page/PagePopupDriver.h" |
65 #include "core/page/SecurityOrigin.h" | 65 #include "core/page/SecurityOrigin.h" |
66 #include "core/page/Settings.h" | 66 #include "core/page/Settings.h" |
67 #include "core/platform/Cursor.h" | 67 #include "core/platform/Cursor.h" |
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1200 { | 1200 { |
1201 } | 1201 } |
1202 | 1202 |
1203 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) | 1203 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) |
1204 { | 1204 { |
1205 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); | 1205 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); |
1206 } | 1206 } |
1207 #endif | 1207 #endif |
1208 | 1208 |
1209 } // namespace WebKit | 1209 } // namespace WebKit |
OLD | NEW |