Chromium Code Reviews| Index: Source/core/dom/RemoteSecurityContext.h |
| diff --git a/Source/core/dom/RemoteSecurityContext.h b/Source/core/dom/RemoteSecurityContext.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3070e73877bacc0acbd427fa9c93e88bf04b2056 |
| --- /dev/null |
| +++ b/Source/core/dom/RemoteSecurityContext.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef RemoteSecurityContext_h |
| +#define RemoteSecurityContext_h |
| + |
| +#include "core/dom/SecurityContext.h" |
| + |
| +namespace blink { |
| + |
| +class RemoteSecurityContext: public SecurityContext, public RefCounted<RemoteSecurityContext> { |
|
dcheng
2014/11/12 21:55:50
Nit: space before :.
alexmos
2014/11/18 18:35:17
Done.
|
| +public: |
| + static PassRefPtr<RemoteSecurityContext> create(); |
| + void setReplicatedOrigin(PassRefPtr<SecurityOrigin>); |
| + |
| +private: |
| + RemoteSecurityContext(); |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // RemoteSecurityContext_h |