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

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 1837 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 { 1950 {
1951 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner); 1951 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner);
1952 setWebCoreFrame(frame); 1952 setWebCoreFrame(frame);
1953 frame->tree().setName(name, fallbackName); 1953 frame->tree().setName(name, fallbackName);
1954 // May dispatch JS events; frame may be detached after this. 1954 // May dispatch JS events; frame may be detached after this.
1955 frame->init(); 1955 frame->init();
1956 return frame; 1956 return frame;
1957 } 1957 }
1958 1958
1959 } // namespace blink 1959 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebDevToolsFrontendImpl.cpp ('k') | Source/web/tests/WebInputEventConversionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698