flutter_flutter/engine/public/web/WebLocalFrame.h
Adam Barth f2d2e80e59 Merge the Sky Engine changes from the SkyDart branch
This CL flips the switch to make Sky use Dart.

TBR=eseidel@chromium.org
BUG=454613

Review URL: https://codereview.chromium.org/922893002
2015-02-12 15:06:03 -08:00

25 lines
823 B
C++

// 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 SKY_ENGINE_PUBLIC_WEB_WEBLOCALFRAME_H_
#define SKY_ENGINE_PUBLIC_WEB_WEBLOCALFRAME_H_
#include "sky/engine/public/web/WebFrame.h"
namespace blink {
// Interface for interacting with in process frames. This contains methods that
// require interacting with a frame's document.
// FIXME: Move lots of methods from WebFrame in here.
class WebLocalFrame : public WebFrame {
public:
// Creates a WebFrame. Delete this WebFrame by calling WebFrame::close().
// It is valid to pass a null client pointer.
BLINK_EXPORT static WebLocalFrame* create(WebFrameClient*);
};
} // namespace blink
#endif // SKY_ENGINE_PUBLIC_WEB_WEBLOCALFRAME_H_