| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Color; | 44 class Color; |
| 45 class Document; | 45 class Document; |
| 46 class DOMWindowExtension; | 46 class DOMWindowExtension; |
| 47 class DOMWrapperWorld; | 47 class DOMWrapperWorld; |
| 48 class Element; | 48 class Element; |
| 49 class FetchRequest; | 49 class FetchRequest; |
| 50 class FrameLoader; | 50 class FrameLoader; |
| 51 class FrameNetworkingContext; | 51 class FrameNetworkingContext; |
| 52 class IntRect; |
| 52 class IntSize; | 53 class IntSize; |
| 53 class KURL; | 54 class KURL; |
| 54 class LocalFrame; | 55 class LocalFrame; |
| 55 class Page; | 56 class Page; |
| 57 class RemoteFrame; |
| 56 class ResourceError; | 58 class ResourceError; |
| 57 class ResourceHandle; | 59 class ResourceHandle; |
| 58 class ResourceRequest; | 60 class ResourceRequest; |
| 59 class ResourceResponse; | 61 class ResourceResponse; |
| 60 class SharedBuffer; | 62 class SharedBuffer; |
| 61 class Widget; | 63 class Widget; |
| 62 | 64 |
| 63 class FrameLoaderClient : public FrameClient { | 65 class FrameLoaderClient : public FrameClient { |
| 64 public: | 66 public: |
| 65 virtual ~FrameLoaderClient() { } | 67 virtual ~FrameLoaderClient() { } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 80 | 82 |
| 81 virtual void dispatchAddNavigationTransitionData(const String& origin, c
onst String& selector, const String& markup) { } | 83 virtual void dispatchAddNavigationTransitionData(const String& origin, c
onst String& selector, const String& markup) { } |
| 82 virtual void dispatchWillRequestResource(FetchRequest*) { } | 84 virtual void dispatchWillRequestResource(FetchRequest*) { } |
| 83 | 85 |
| 84 virtual void didStartLoading(LoadStartType) = 0; | 86 virtual void didStartLoading(LoadStartType) = 0; |
| 85 virtual void progressEstimateChanged(double progressEstimate) = 0; | 87 virtual void progressEstimateChanged(double progressEstimate) = 0; |
| 86 virtual void didStopLoading() = 0; | 88 virtual void didStopLoading() = 0; |
| 87 | 89 |
| 88 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy,
const String& suggestedName = String()) = 0; | 90 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy,
const String& suggestedName = String()) = 0; |
| 89 | 91 |
| 90 // TODO(mpcomplete): return surface ID? | 92 virtual PassOwnPtr<RemoteFrame> createChildFrame(const KURL&) = 0; |
| 91 virtual void createView(const KURL&) = 0; | |
| 92 | 93 |
| 93 // Transmits the change in the set of watched CSS selectors property | 94 // Transmits the change in the set of watched CSS selectors property |
| 94 // that match any element on the frame. | 95 // that match any element on the frame. |
| 95 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; | 96 virtual void selectorMatchChanged(const Vector<String>& addedSelectors,
const Vector<String>& removedSelectors) = 0; |
| 96 | 97 |
| 97 virtual void transitionToCommittedForNewPage() = 0; | 98 virtual void transitionToCommittedForNewPage() = 0; |
| 98 | 99 |
| 99 | 100 |
| 100 virtual void documentElementAvailable() = 0; | 101 virtual void documentElementAvailable() = 0; |
| 101 | 102 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 112 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } | 113 virtual void dispatchDidChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority, int intraPriorityValue) { } |
| 113 | 114 |
| 114 virtual void dispatchDidChangeManifest() { } | 115 virtual void dispatchDidChangeManifest() { } |
| 115 | 116 |
| 116 virtual bool isFrameLoaderClientImpl() const { return false; } | 117 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 117 }; | 118 }; |
| 118 | 119 |
| 119 } // namespace blink | 120 } // namespace blink |
| 120 | 121 |
| 121 #endif // FrameLoaderClient_h | 122 #endif // FrameLoaderClient_h |
| OLD | NEW |