| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "bindings/core/v8/V8PagePopupControllerBinding.h" | 5 #include "bindings/core/v8/V8PagePopupControllerBinding.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/V8Binding.h" | 7 #include "bindings/core/v8/V8BindingForCore.h" |
| 8 #include "bindings/core/v8/V8Window.h" | 8 #include "bindings/core/v8/V8Window.h" |
| 9 #include "core/dom/ContextFeatures.h" | 9 #include "core/dom/ContextFeatures.h" |
| 10 #include "core/dom/Document.h" | 10 #include "core/dom/Document.h" |
| 11 #include "core/dom/ExecutionContext.h" | 11 #include "core/dom/ExecutionContext.h" |
| 12 #include "core/frame/LocalDOMWindow.h" | 12 #include "core/frame/LocalDOMWindow.h" |
| 13 #include "core/page/PagePopupController.h" | 13 #include "core/page/PagePopupController.h" |
| 14 #include "core/page/PagePopupSupplement.h" | 14 #include "core/page/PagePopupSupplement.h" |
| 15 #include "platform/instrumentation/tracing/TraceEvent.h" | 15 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 46 return; | 46 return; |
| 47 | 47 |
| 48 window_wrapper | 48 window_wrapper |
| 49 ->SetAccessor( | 49 ->SetAccessor( |
| 50 context, V8AtomicString(context->GetIsolate(), "pagePopupController"), | 50 context, V8AtomicString(context->GetIsolate(), "pagePopupController"), |
| 51 PagePopupControllerAttributeGetterCallback) | 51 PagePopupControllerAttributeGetterCallback) |
| 52 .ToChecked(); | 52 .ToChecked(); |
| 53 } | 53 } |
| 54 | 54 |
| 55 } // namespace blink | 55 } // namespace blink |
| OLD | NEW |