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

Side by Side Diff: third_party/WebKit/Source/core/dom/ExecutionContext.cpp

Issue 1489253002: Plumb document's strict mixed content checking for RemoteFrames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nasko comments Created 5 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2012 Google Inc. All Rights Reserved. 3 * Copyright (C) 2012 Google Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 int m_scriptId; 65 int m_scriptId;
66 String m_sourceURL; 66 String m_sourceURL;
67 RefPtrWillBeMember<ScriptCallStack> m_callStack; 67 RefPtrWillBeMember<ScriptCallStack> m_callStack;
68 }; 68 };
69 69
70 ExecutionContext::ExecutionContext() 70 ExecutionContext::ExecutionContext()
71 : m_circularSequentialID(0) 71 : m_circularSequentialID(0)
72 , m_inDispatchErrorEvent(false) 72 , m_inDispatchErrorEvent(false)
73 , m_activeDOMObjectsAreSuspended(false) 73 , m_activeDOMObjectsAreSuspended(false)
74 , m_activeDOMObjectsAreStopped(false) 74 , m_activeDOMObjectsAreStopped(false)
75 , m_strictMixedContentCheckingEnforced(false)
76 , m_windowInteractionTokens(0) 75 , m_windowInteractionTokens(0)
77 , m_isRunSuspendableTasksScheduled(false) 76 , m_isRunSuspendableTasksScheduled(false)
78 , m_referrerPolicy(ReferrerPolicyDefault) 77 , m_referrerPolicy(ReferrerPolicyDefault)
79 { 78 {
80 } 79 }
81 80
82 ExecutionContext::~ExecutionContext() 81 ExecutionContext::~ExecutionContext()
83 { 82 {
84 } 83 }
85 84
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 { 296 {
298 #if ENABLE(OILPAN) 297 #if ENABLE(OILPAN)
299 visitor->trace(m_pendingExceptions); 298 visitor->trace(m_pendingExceptions);
300 visitor->trace(m_publicURLManager); 299 visitor->trace(m_publicURLManager);
301 HeapSupplementable<ExecutionContext>::trace(visitor); 300 HeapSupplementable<ExecutionContext>::trace(visitor);
302 #endif 301 #endif
303 ContextLifecycleNotifier::trace(visitor); 302 ContextLifecycleNotifier::trace(visitor);
304 } 303 }
305 304
306 } // namespace blink 305 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExecutionContext.h ('k') | third_party/WebKit/Source/core/dom/SecurityContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698