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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentInit.cpp

Issue 1676003002: Fix MSAN error for r373917. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DocumentInit.cpp
diff --git a/third_party/WebKit/Source/core/dom/DocumentInit.cpp b/third_party/WebKit/Source/core/dom/DocumentInit.cpp
index d8e85c112159f624e6d092aee3525b04ef5765c3..389db7bfd877a1c6e0e991ab91f6a6cd8441482d 100644
--- a/third_party/WebKit/Source/core/dom/DocumentInit.cpp
+++ b/third_party/WebKit/Source/core/dom/DocumentInit.cpp
@@ -75,18 +75,7 @@ DocumentInit::DocumentInit(const KURL& url, LocalFrame* frame, WeakPtrWillBeRawP
{
}
-DocumentInit::DocumentInit(const DocumentInit& other)
- : m_url(other.m_url)
- , m_frame(other.m_frame)
- , m_parent(other.m_parent)
- , m_owner(other.m_owner)
- , m_contextDocument(other.m_contextDocument)
- , m_importsController(other.m_importsController)
- , m_registrationContext(other.m_registrationContext)
- , m_createNewRegistrationContext(other.m_createNewRegistrationContext)
- , m_shouldReuseDefaultView(other.m_shouldReuseDefaultView)
-{
-}
+DocumentInit::DocumentInit(const DocumentInit&) = default;
DocumentInit::~DocumentInit()
{
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698