OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 | 227 |
228 String doNotTrackValue() override { return String(); } | 228 String doNotTrackValue() override { return String(); } |
229 | 229 |
230 void transitionToCommittedForNewPage() override {} | 230 void transitionToCommittedForNewPage() override {} |
231 | 231 |
232 bool navigateBackForward(int offset) const override { return false; } | 232 bool navigateBackForward(int offset) const override { return false; } |
233 void didDisplayInsecureContent() override {} | 233 void didDisplayInsecureContent() override {} |
234 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {} | 234 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {} |
235 void didDetectXSS(const KURL&, bool) override {} | 235 void didDetectXSS(const KURL&, bool) override {} |
236 void didDispatchPingLoader(const KURL&) override {} | 236 void didDispatchPingLoader(const KURL&) override {} |
| 237 void didDisplayContentWithCertificateErrors(const KURL&, const CString&, con
st WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} |
| 238 void didRunContentWithCertificateErrors(const KURL&, const CString&, const W
ebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} |
237 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over
ride {} | 239 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over
ride {} |
238 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons
t AtomicString&, HTMLFrameOwnerElement*) override; | 240 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons
t AtomicString&, HTMLFrameOwnerElement*) override; |
239 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&,
const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug
inPolicy) override; | 241 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&,
const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug
inPolicy) override; |
240 bool canCreatePluginWithoutRenderer(const String& mimeType) const override {
return false; } | 242 bool canCreatePluginWithoutRenderer(const String& mimeType) const override {
return false; } |
241 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web
URL&, WebMediaPlayerClient*) override; | 243 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web
URL&, WebMediaPlayerClient*) override; |
242 PassOwnPtr<WebMediaSession> createWebMediaSession() override; | 244 PassOwnPtr<WebMediaSession> createWebMediaSession() override; |
243 | 245 |
244 ObjectContentType objectContentType(const KURL&, const String&, bool) overri
de { return ObjectContentType(); } | 246 ObjectContentType objectContentType(const KURL&, const String&, bool) overri
de { return ObjectContentType(); } |
245 | 247 |
246 void didCreateNewDocument() override {} | 248 void didCreateNewDocument() override {} |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 ~EmptyDragClient() override {} | 331 ~EmptyDragClient() override {} |
330 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 332 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
331 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 333 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
332 }; | 334 }; |
333 | 335 |
334 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 336 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
335 | 337 |
336 } // namespace blink | 338 } // namespace blink |
337 | 339 |
338 #endif // EmptyClients_h | 340 #endif // EmptyClients_h |
OLD | NEW |