| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 208 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 209 virtual void dispatchWillSubmitForm(HTMLFormElement*) override; | 209 virtual void dispatchWillSubmitForm(HTMLFormElement*) override; |
| 210 | 210 |
| 211 virtual void didStartLoading(LoadStartType) override { } | 211 virtual void didStartLoading(LoadStartType) override { } |
| 212 virtual void progressEstimateChanged(double) override { } | 212 virtual void progressEstimateChanged(double) override { } |
| 213 virtual void didStopLoading() override { } | 213 virtual void didStopLoading() override { } |
| 214 | 214 |
| 215 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& = String()) override { } | 215 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& = String()) override { } |
| 216 | 216 |
| 217 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const R
esourceRequest&, const SubstituteData&) override; | 217 virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFra
me*, const ResourceRequest&, const SubstituteData&) override; |
| 218 | 218 |
| 219 virtual String userAgent(const KURL&) override { return ""; } | 219 virtual String userAgent(const KURL&) override { return ""; } |
| 220 | 220 |
| 221 virtual String doNotTrackValue() override { return String(); } | 221 virtual String doNotTrackValue() override { return String(); } |
| 222 | 222 |
| 223 virtual void transitionToCommittedForNewPage() override { } | 223 virtual void transitionToCommittedForNewPage() override { } |
| 224 | 224 |
| 225 virtual bool navigateBackForward(int offset) const override { return false;
} | 225 virtual bool navigateBackForward(int offset) const override { return false;
} |
| 226 virtual void didDisplayInsecureContent() override { } | 226 virtual void didDisplayInsecureContent() override { } |
| 227 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) override {
} | 227 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) override {
} |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 virtual ~EmptyDragClient() { } | 318 virtual ~EmptyDragClient() { } |
| 319 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } | 319 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } |
| 320 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } | 320 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } |
| 321 }; | 321 }; |
| 322 | 322 |
| 323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 324 | 324 |
| 325 } // namespace blink | 325 } // namespace blink |
| 326 | 326 |
| 327 #endif // EmptyClients_h | 327 #endif // EmptyClients_h |
| OLD | NEW |