| Index: Source/core/frame/Location.h
|
| diff --git a/Source/core/frame/Location.h b/Source/core/frame/Location.h
|
| index 8b6f0a37be2716593c370d99d93ca53099bb4247..e1ee2ed1b7aeed78a105868089c3ae149a5e61fc 100644
|
| --- a/Source/core/frame/Location.h
|
| +++ b/Source/core/frame/Location.h
|
| @@ -40,14 +40,14 @@ namespace blink {
|
|
|
| class LocalDOMWindow;
|
| class ExceptionState;
|
| -class LocalFrame;
|
| +class Frame;
|
| class KURL;
|
|
|
| class Location final : public RefCountedWillBeGarbageCollected<Location>, public ScriptWrappable, public DOMWindowProperty {
|
| DEFINE_WRAPPERTYPEINFO();
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Location);
|
| public:
|
| - static PassRefPtrWillBeRawPtr<Location> create(LocalFrame* frame)
|
| + static PassRefPtrWillBeRawPtr<Location> create(Frame* frame)
|
| {
|
| return adoptRefWillBeNoop(new Location(frame));
|
| }
|
| @@ -80,7 +80,7 @@ public:
|
| virtual void trace(Visitor*) override;
|
|
|
| private:
|
| - explicit Location(LocalFrame*);
|
| + explicit Location(Frame*);
|
|
|
| enum class SetLocation { Normal, ReplaceThisFrame };
|
| void setLocation(const String&, LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, SetLocation = SetLocation::Normal);
|
|
|