| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "sky/engine/core/app/Application.h" | |
| 6 | |
| 7 #include "gen/sky/core/EventTargetNames.h" | |
| 8 | |
| 9 namespace blink { | |
| 10 | |
| 11 Application::Application(ExecutionContext* context, | |
| 12 PassRefPtr<Document> document, | |
| 13 const String& url) | |
| 14 : AbstractModule(context, document, url) { | |
| 15 } | |
| 16 | |
| 17 Application::~Application() { | |
| 18 } | |
| 19 | |
| 20 const AtomicString& Application::interfaceName() const { | |
| 21 return EventTargetNames::Application; | |
| 22 } | |
| 23 | |
| 24 Application* Application::GetApplication() { | |
| 25 return this; | |
| 26 } | |
| 27 | |
| 28 } // namespace blink | |
| OLD | NEW |