electron/atom/browser/api/atom_api_web_contents.h

99 lines
3.2 KiB
C
Raw Normal View History

2014-04-24 08:45:25 +00:00
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2014-04-24 08:45:25 +00:00
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
#include "atom/browser/api/event_emitter.h"
#include "content/public/browser/browser_plugin_guest_delegate.h"
2014-04-25 03:22:51 +00:00
#include "content/public/browser/web_contents_observer.h"
2014-04-24 08:45:25 +00:00
#include "native_mate/handle.h"
namespace mate {
class Dictionary;
}
2014-04-24 08:45:25 +00:00
namespace atom {
namespace api {
2014-04-25 03:22:51 +00:00
class WebContents : public mate::EventEmitter,
public content::BrowserPluginGuestDelegate,
2014-04-25 03:22:51 +00:00
public content::WebContentsObserver {
2014-04-24 08:45:25 +00:00
public:
// Create from an existing WebContents.
static mate::Handle<WebContents> CreateFrom(
v8::Isolate* isolate, content::WebContents* web_contents);
// Create a new WebContents.
static mate::Handle<WebContents> Create(
v8::Isolate* isolate, const mate::Dictionary& options);
2014-04-24 08:45:25 +00:00
void Destroy();
2014-04-25 03:22:51 +00:00
bool IsAlive() const;
void LoadURL(const GURL& url);
GURL GetURL() const;
2014-06-28 11:36:57 +00:00
base::string16 GetTitle() const;
bool IsLoading() const;
bool IsWaitingForResponse() const;
void Stop();
void Reload();
void ReloadIgnoringCache();
bool CanGoBack() const;
bool CanGoForward() const;
bool CanGoToOffset(int offset) const;
void GoBack();
void GoForward();
void GoToIndex(int index);
void GoToOffset(int offset);
int GetRoutingID() const;
int GetProcessID() const;
bool IsCrashed() const;
2014-06-28 11:36:57 +00:00
void ExecuteJavaScript(const base::string16& code);
bool SendIPCMessage(const base::string16& channel,
const base::ListValue& args);
2014-04-24 08:45:25 +00:00
protected:
explicit WebContents(content::WebContents* web_contents);
explicit WebContents(const mate::Dictionary& options);
~WebContents();
2014-04-24 08:45:25 +00:00
// mate::Wrappable implementations:
virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
2014-04-25 03:22:51 +00:00
v8::Isolate* isolate) OVERRIDE;
// content::WebContentsObserver implementations:
virtual void RenderViewDeleted(content::RenderViewHost*) OVERRIDE;
virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
2014-10-11 11:11:34 +00:00
virtual void DidFinishLoad(content::RenderFrameHost* render_frame_host,
const GURL& validated_url) OVERRIDE;
2014-04-25 04:22:16 +00:00
virtual void DidStartLoading(
content::RenderViewHost* render_view_host) OVERRIDE;
virtual void DidStopLoading(
content::RenderViewHost* render_view_host) OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
2014-07-28 07:29:51 +00:00
virtual void WebContentsDestroyed() OVERRIDE;
2014-04-24 08:45:25 +00:00
private:
// Called when received a message from renderer.
2014-06-28 11:36:57 +00:00
void OnRendererMessage(const base::string16& channel,
const base::ListValue& args);
// Called when received a synchronous message from renderer.
2014-06-28 11:36:57 +00:00
void OnRendererMessageSync(const base::string16& channel,
const base::ListValue& args,
IPC::Message* message);
// Stores the WebContents that managed by this class.
scoped_ptr<content::WebContents> storage_;
2014-04-24 08:45:25 +00:00
DISALLOW_COPY_AND_ASSIGN(WebContents);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_