Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: sky/engine/core/loader/FrameLoaderClient.h

Issue 682413006: Add a separate call to initialize the bounds for a sky <iframe> element. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698