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

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

Issue 351423002: Moved files under Source/bindings/v8 to Source/bindings/core/v8. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/web/WebLeakDetector.cpp ('k') | Source/web/WebNode.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 // LocalFrame, and also notifies the embedder via WebFrameClient that the frame is 65 // LocalFrame, and also notifies the embedder via WebFrameClient that the frame is
66 // detached. Most embedders will invoke close() on the WebFrame at this point, 66 // detached. Most embedders will invoke close() on the WebFrame at this point,
67 // triggering its deletion unless something else is still retaining a reference. 67 // triggering its deletion unless something else is still retaining a reference.
68 // 68 //
69 // Thie client is expected to be set whenever the WebLocalFrameImpl is attached to 69 // Thie client is expected to be set whenever the WebLocalFrameImpl is attached to
70 // the DOM. 70 // the DOM.
71 71
72 #include "config.h" 72 #include "config.h"
73 #include "web/WebLocalFrameImpl.h" 73 #include "web/WebLocalFrameImpl.h"
74 74
75 #include "bindings/v8/DOMWrapperWorld.h" 75 #include "bindings/core/v8/DOMWrapperWorld.h"
76 #include "bindings/v8/ExceptionState.h" 76 #include "bindings/core/v8/ExceptionState.h"
77 #include "bindings/v8/ExceptionStatePlaceholder.h" 77 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
78 #include "bindings/v8/ScriptController.h" 78 #include "bindings/core/v8/ScriptController.h"
79 #include "bindings/v8/ScriptSourceCode.h" 79 #include "bindings/core/v8/ScriptSourceCode.h"
80 #include "bindings/v8/ScriptValue.h" 80 #include "bindings/core/v8/ScriptValue.h"
81 #include "bindings/v8/V8GCController.h" 81 #include "bindings/core/v8/V8GCController.h"
82 #include "bindings/v8/V8PerIsolateData.h" 82 #include "bindings/core/v8/V8PerIsolateData.h"
83 #include "core/HTMLNames.h" 83 #include "core/HTMLNames.h"
84 #include "core/dom/Document.h" 84 #include "core/dom/Document.h"
85 #include "core/dom/IconURL.h" 85 #include "core/dom/IconURL.h"
86 #include "core/dom/MessagePort.h" 86 #include "core/dom/MessagePort.h"
87 #include "core/dom/Node.h" 87 #include "core/dom/Node.h"
88 #include "core/dom/NodeTraversal.h" 88 #include "core/dom/NodeTraversal.h"
89 #include "core/dom/shadow/ShadowRoot.h" 89 #include "core/dom/shadow/ShadowRoot.h"
90 #include "core/editing/Editor.h" 90 #include "core/editing/Editor.h"
91 #include "core/editing/FrameSelection.h" 91 #include "core/editing/FrameSelection.h"
92 #include "core/editing/InputMethodController.h" 92 #include "core/editing/InputMethodController.h"
(...skipping 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 { 1858 {
1859 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner); 1859 RefPtr<LocalFrame> frame = LocalFrame::create(&m_frameLoaderClientImpl, host , owner);
1860 setWebCoreFrame(frame); 1860 setWebCoreFrame(frame);
1861 frame->tree().setName(name, fallbackName); 1861 frame->tree().setName(name, fallbackName);
1862 // May dispatch JS events; frame may be detached after this. 1862 // May dispatch JS events; frame may be detached after this.
1863 frame->init(); 1863 frame->init();
1864 return frame; 1864 return frame;
1865 } 1865 }
1866 1866
1867 } // namespace blink 1867 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebLeakDetector.cpp ('k') | Source/web/WebNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698