Chromium Code Reviews| 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; |
| 56 class ResourceError; | 57 class ResourceError; |
| 57 class ResourceHandle; | 58 class ResourceHandle; |
| 58 class ResourceRequest; | 59 class ResourceRequest; |
| 59 class ResourceResponse; | 60 class ResourceResponse; |
| 60 class SharedBuffer; | 61 class SharedBuffer; |
| 61 class Widget; | 62 class Widget; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 81 virtual void dispatchAddNavigationTransitionData(const String& origin, c onst String& selector, const String& markup) { } | 82 virtual void dispatchAddNavigationTransitionData(const String& origin, c onst String& selector, const String& markup) { } |
| 82 virtual void dispatchWillRequestResource(FetchRequest*) { } | 83 virtual void dispatchWillRequestResource(FetchRequest*) { } |
| 83 | 84 |
| 84 virtual void didStartLoading(LoadStartType) = 0; | 85 virtual void didStartLoading(LoadStartType) = 0; |
| 85 virtual void progressEstimateChanged(double progressEstimate) = 0; | 86 virtual void progressEstimateChanged(double progressEstimate) = 0; |
| 86 virtual void didStopLoading() = 0; | 87 virtual void didStopLoading() = 0; |
| 87 | 88 |
| 88 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, const String& suggestedName = String()) = 0; | 89 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, const String& suggestedName = String()) = 0; |
| 89 | 90 |
| 90 // TODO(mpcomplete): return surface ID? | 91 // TODO(mpcomplete): return surface ID? |
| 91 virtual void createView(const KURL&) = 0; | 92 virtual uint32_t createChildFrame(const KURL&) = 0; |
| 93 virtual void initializeChildFrame(uint32_t, const IntRect&) = 0; | |
|
abarth-chromium
2014/11/07 21:25:50
Seems like createChildFrame should return an objec
Matt Perry
2014/11/10 23:00:56
Done.
| |
| 92 | 94 |
| 93 // Transmits the change in the set of watched CSS selectors property | 95 // Transmits the change in the set of watched CSS selectors property |
| 94 // that match any element on the frame. | 96 // that match any element on the frame. |
| 95 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0; | 97 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0; |
| 96 | 98 |
| 97 virtual void transitionToCommittedForNewPage() = 0; | 99 virtual void transitionToCommittedForNewPage() = 0; |
| 98 | 100 |
| 99 | 101 |
| 100 virtual void documentElementAvailable() = 0; | 102 virtual void documentElementAvailable() = 0; |
| 101 | 103 |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 112 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoadPriority, int intraPriorityValue) { } | 114 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoadPriority, int intraPriorityValue) { } |
| 113 | 115 |
| 114 virtual void dispatchDidChangeManifest() { } | 116 virtual void dispatchDidChangeManifest() { } |
| 115 | 117 |
| 116 virtual bool isFrameLoaderClientImpl() const { return false; } | 118 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 117 }; | 119 }; |
| 118 | 120 |
| 119 } // namespace blink | 121 } // namespace blink |
| 120 | 122 |
| 121 #endif // FrameLoaderClient_h | 123 #endif // FrameLoaderClient_h |
| OLD | NEW |