| Index: sky/engine/core/app/Application.cpp
|
| diff --git a/sky/engine/core/app/Application.cpp b/sky/engine/core/app/Application.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..036fa55c4c6a0a45ccee63902e0808f1710c6ca9
|
| --- /dev/null
|
| +++ b/sky/engine/core/app/Application.cpp
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +#include "config.h"
|
| +#include "core/app/Application.h"
|
| +
|
| +#include "core/EventTargetNames.h"
|
| +
|
| +namespace blink {
|
| +
|
| +Application::Application(ExecutionContext* context, Document* document, const String& url)
|
| + : AbstractModule(context, document, url)
|
| +{
|
| +}
|
| +
|
| +Application::~Application()
|
| +{
|
| +}
|
| +
|
| +const AtomicString& Application::interfaceName() const
|
| +{
|
| + return EventTargetNames::Application;
|
| +}
|
| +
|
| +} // namespace blink
|
|
|