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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 #include "WebViewImpl.h" | 68 #include "WebViewImpl.h" |
69 #include "WebWindowFeatures.h" | 69 #include "WebWindowFeatures.h" |
70 #include "bindings/v8/ScriptController.h" | 70 #include "bindings/v8/ScriptController.h" |
71 #include "core/accessibility/AXObjectCache.h" | 71 #include "core/accessibility/AXObjectCache.h" |
72 #include "core/accessibility/AccessibilityObject.h" | 72 #include "core/accessibility/AccessibilityObject.h" |
73 #include "core/dom/Document.h" | 73 #include "core/dom/Document.h" |
74 #include "core/dom/Node.h" | 74 #include "core/dom/Node.h" |
75 #include "core/html/HTMLInputElement.h" | 75 #include "core/html/HTMLInputElement.h" |
76 #include "core/loader/DocumentLoader.h" | 76 #include "core/loader/DocumentLoader.h" |
77 #include "core/loader/FrameLoadRequest.h" | 77 #include "core/loader/FrameLoadRequest.h" |
78 #include "core/page/Console.h" | 78 #include "core/frame/Console.h" |
79 #include "core/page/FrameView.h" | 79 #include "core/page/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" | 88 #include "core/platform/PlatformScreen.h" |
(...skipping 915 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 |