| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { } | 205 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { } |
| 206 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { } | 206 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { } |
| 207 virtual void dispatchDidFinishLoad() OVERRIDE { } | 207 virtual void dispatchDidFinishLoad() OVERRIDE { } |
| 208 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { } | 208 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { } |
| 209 | 209 |
| 210 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D
ocumentLoader*, NavigationPolicy) OVERRIDE; | 210 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D
ocumentLoader*, NavigationPolicy) OVERRIDE; |
| 211 | 211 |
| 212 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE; | 212 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE; |
| 213 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE; | 213 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE; |
| 214 | 214 |
| 215 virtual void didStartLoading(LoadStartType) OVERRIDE { } | 215 virtual void postProgressStartedNotification(LoadStartType) OVERRIDE { } |
| 216 virtual void progressEstimateChanged(double) OVERRIDE { } | 216 virtual void postProgressEstimateChangedNotification() OVERRIDE { } |
| 217 virtual void didStopLoading() OVERRIDE { } | 217 virtual void postProgressFinishedNotification() OVERRIDE { } |
| 218 | 218 |
| 219 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& = String()) OVERRIDE { } | 219 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& = String()) OVERRIDE { } |
| 220 | 220 |
| 221 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const R
esourceRequest&, const SubstituteData&) OVERRIDE; | 221 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const R
esourceRequest&, const SubstituteData&) OVERRIDE; |
| 222 | 222 |
| 223 virtual String userAgent(const KURL&) OVERRIDE { return ""; } | 223 virtual String userAgent(const KURL&) OVERRIDE { return ""; } |
| 224 | 224 |
| 225 virtual String doNotTrackValue() OVERRIDE { return String(); } | 225 virtual String doNotTrackValue() OVERRIDE { return String(); } |
| 226 | 226 |
| 227 virtual void transitionToCommittedForNewPage() OVERRIDE { } | 227 virtual void transitionToCommittedForNewPage() OVERRIDE { } |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 public: | 337 public: |
| 338 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID
E; | 338 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID
E; |
| 339 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret
urn false; } | 339 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret
urn false; } |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 void fillWithEmptyClients(Page::PageClients&); | 342 void fillWithEmptyClients(Page::PageClients&); |
| 343 | 343 |
| 344 } | 344 } |
| 345 | 345 |
| 346 #endif // EmptyClients_h | 346 #endif // EmptyClients_h |
| OLD | NEW |