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

Side by Side Diff: Source/web/WebLocalFrameImpl.cpp

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 months 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #include "core/editing/Editor.h" 92 #include "core/editing/Editor.h"
93 #include "core/editing/FrameSelection.h" 93 #include "core/editing/FrameSelection.h"
94 #include "core/editing/InputMethodController.h" 94 #include "core/editing/InputMethodController.h"
95 #include "core/editing/PlainTextRange.h" 95 #include "core/editing/PlainTextRange.h"
96 #include "core/editing/SpellChecker.h" 96 #include "core/editing/SpellChecker.h"
97 #include "core/editing/TextAffinity.h" 97 #include "core/editing/TextAffinity.h"
98 #include "core/editing/TextIterator.h" 98 #include "core/editing/TextIterator.h"
99 #include "core/editing/htmlediting.h" 99 #include "core/editing/htmlediting.h"
100 #include "core/editing/markup.h" 100 #include "core/editing/markup.h"
101 #include "core/frame/Console.h" 101 #include "core/frame/Console.h"
102 #include "core/frame/DOMWindow.h" 102 #include "core/frame/LocalDOMWindow.h"
103 #include "core/frame/FrameHost.h" 103 #include "core/frame/FrameHost.h"
104 #include "core/frame/FrameView.h" 104 #include "core/frame/FrameView.h"
105 #include "core/frame/Settings.h" 105 #include "core/frame/Settings.h"
106 #include "core/html/HTMLCollection.h" 106 #include "core/html/HTMLCollection.h"
107 #include "core/html/HTMLFormElement.h" 107 #include "core/html/HTMLFormElement.h"
108 #include "core/html/HTMLFrameElementBase.h" 108 #include "core/html/HTMLFrameElementBase.h"
109 #include "core/html/HTMLFrameOwnerElement.h" 109 #include "core/html/HTMLFrameOwnerElement.h"
110 #include "core/html/HTMLHeadElement.h" 110 #include "core/html/HTMLHeadElement.h"
111 #include "core/html/HTMLInputElement.h" 111 #include "core/html/HTMLInputElement.h"
112 #include "core/html/HTMLLinkElement.h" 112 #include "core/html/HTMLLinkElement.h"
(...skipping 1836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1949 { 1949 {
1950 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner); 1950 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner);
1951 setWebCoreFrame(frame); 1951 setWebCoreFrame(frame);
1952 frame->tree().setName(name, fallbackName); 1952 frame->tree().setName(name, fallbackName);
1953 // May dispatch JS events; frame may be detached after this. 1953 // May dispatch JS events; frame may be detached after this.
1954 frame->init(); 1954 frame->init();
1955 return frame; 1955 return frame;
1956 } 1956 }
1957 1957
1958 } // namespace blink 1958 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698