| Index: sky/engine/bindings-dart/core/dart/custom/DartInspectorFrontendHostCustom.cpp
|
| diff --git a/LICENSE b/sky/engine/bindings-dart/core/dart/custom/DartInspectorFrontendHostCustom.cpp
|
| similarity index 61%
|
| copy from LICENSE
|
| copy to sky/engine/bindings-dart/core/dart/custom/DartInspectorFrontendHostCustom.cpp
|
| index 972bb2edb099e58b6a1939fa57f8e74391159c0c..4872ffbcccf99a225fb273acb7d7042aa7a03ae3 100644
|
| --- a/LICENSE
|
| +++ b/sky/engine/bindings-dart/core/dart/custom/DartInspectorFrontendHostCustom.cpp
|
| @@ -1,4 +1,5 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Copyright 2014, Google Inc.
|
| +// All rights reserved.
|
| //
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| @@ -25,3 +26,51 @@
|
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| +
|
| +#include "config.h"
|
| +
|
| +#include "bindings/core/dart/DartInspectorFrontendHost.h"
|
| +
|
| +namespace blink {
|
| +
|
| +namespace DartInspectorFrontendHostInternal {
|
| +
|
| +void platformCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +void portCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +void recordActionTakenCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +void recordPanelShownCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +void showContextMenuCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +void showContextMenuAtPointCallback(Dart_NativeArguments args)
|
| +{
|
| + // FIXME: proper implementation.
|
| + DART_UNIMPLEMENTED();
|
| +}
|
| +
|
| +}
|
| +
|
| +}
|
|
|