| Index: content/browser/child_process_security_policy_impl.h
|
| diff --git a/content/browser/child_process_security_policy_impl.h b/content/browser/child_process_security_policy_impl.h
|
| index 46d2d7a6e96128e69e688a359af4cc64d1ba420e..025eb502651d27569a4b525fecd49627a07a338f 100644
|
| --- a/content/browser/child_process_security_policy_impl.h
|
| +++ b/content/browser/child_process_security_policy_impl.h
|
| @@ -5,12 +5,13 @@
|
| #ifndef CONTENT_BROWSER_CHILD_PROCESS_SECURITY_POLICY_IMPL_H_
|
| #define CONTENT_BROWSER_CHILD_PROCESS_SECURITY_POLICY_IMPL_H_
|
|
|
| -
|
| #include <map>
|
| +#include <memory>
|
| #include <set>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/debug/crash_logging.h"
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| #include "base/memory/singleton.h"
|
| @@ -78,6 +79,10 @@ class CONTENT_EXPORT ChildProcessSecurityPolicyImpl
|
| void GrantSendMidiSysExMessage(int child_id) override;
|
| bool CanAccessDataForOrigin(int child_id, const GURL& url) override;
|
|
|
| + // TODO(nick): Remove this once we understand http://crbug.com/600441
|
| + std::unique_ptr<base::debug::ScopedCrashKey> GetOriginLockCrashKey(
|
| + int child_id);
|
| +
|
| // Pseudo schemes are treated differently than other schemes because they
|
| // cannot be requested like normal URLs. There is no mechanism for revoking
|
| // pseudo schemes.
|
|
|