// Copyright (c) 2017 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_ #define SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_ #include #include #include "content/public/browser/web_contents_observer.h" #include "gin/handle.h" #include "shell/browser/native_browser_view.h" #include "shell/common/gin_helper/error_thrower.h" #include "shell/common/gin_helper/trackable_object.h" namespace gfx { class Rect; } namespace gin_helper { class Dictionary; } namespace electron { class NativeBrowserView; namespace api { class WebContents; class BrowserView : public gin_helper::TrackableObject, public content::WebContentsObserver { public: static gin_helper::WrappableBase* New(gin_helper::ErrorThrower thrower, gin::Arguments* args); static void BuildPrototype(v8::Isolate* isolate, v8::Local prototype); WebContents* web_contents() const { return api_web_contents_; } NativeBrowserView* view() const { return view_.get(); } int32_t ID() const; protected: BrowserView(gin::Arguments* args, const gin_helper::Dictionary& options); ~BrowserView() override; // content::WebContentsObserver: void WebContentsDestroyed() override; private: void SetAutoResize(AutoResizeFlags flags); void SetBounds(const gfx::Rect& bounds); gfx::Rect GetBounds(); void SetBackgroundColor(const std::string& color_name); v8::Local GetWebContents(); v8::Global web_contents_; class WebContents* api_web_contents_ = nullptr; std::unique_ptr view_; DISALLOW_COPY_AND_ASSIGN(BrowserView); }; } // namespace api } // namespace electron #endif // SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_