electron/atom/renderer/api/atom_api_web_view.h

46 lines
969 B
C
Raw Normal View History

2014-06-16 06:27:57 +00:00
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_RENDERER_API_ATOM_API_WEB_VIEW_H_
#define ATOM_RENDERER_API_ATOM_API_WEB_VIEW_H_
#include "native_mate/handle.h"
#include "native_mate/wrappable.h"
namespace blink {
2014-06-16 06:27:57 +00:00
class WebView;
}
namespace atom {
namespace api {
class WebView : public mate::Wrappable {
public:
static mate::Handle<WebView> Create(v8::Isolate* isolate);
private:
WebView();
virtual ~WebView();
double SetZoomLevel(double level);
2014-06-16 06:27:57 +00:00
double GetZoomLevel() const;
double SetZoomFactor(double factor);
double GetZoomFactor() const;
2014-06-16 06:27:57 +00:00
// mate::Wrappable:
virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
v8::Isolate* isolate);
blink::WebView* web_view_;
2014-06-16 06:27:57 +00:00
DISALLOW_COPY_AND_ASSIGN(WebView);
};
} // namespace api
} // namespace atom
#endif // ATOM_RENDERER_API_ATOM_API_WEB_VIEW_H_