2013-04-08 17:53:53 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_IMPL_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_IMPL_H_
|
|
|
|
|
|
|
|
#include "browser/inspectable_web_contents.h"
|
|
|
|
|
2013-03-27 14:33:00 +00:00
|
|
|
#include "content/public/browser/devtools_frontend_host_delegate.h"
|
|
|
|
#include "content/public/browser/web_contents_delegate.h"
|
|
|
|
#include "content/public/browser/web_contents_observer.h"
|
|
|
|
|
2013-04-08 17:53:53 +00:00
|
|
|
class PrefRegistrySimple;
|
|
|
|
|
2013-03-27 14:33:00 +00:00
|
|
|
namespace content {
|
|
|
|
class DevToolsAgentHost;
|
|
|
|
class DevToolsClientHost;
|
|
|
|
}
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class InspectableWebContentsView;
|
|
|
|
|
2013-03-27 14:33:00 +00:00
|
|
|
class InspectableWebContentsImpl :
|
|
|
|
public InspectableWebContents,
|
|
|
|
content::DevToolsFrontendHostDelegate,
|
|
|
|
content::WebContentsObserver,
|
|
|
|
content::WebContentsDelegate {
|
2013-03-14 13:03:50 +00:00
|
|
|
public:
|
2013-04-08 17:53:53 +00:00
|
|
|
static void RegisterPrefs(PrefRegistrySimple*);
|
|
|
|
|
2013-04-20 05:24:45 +00:00
|
|
|
InspectableWebContentsImpl(content::WebContents*);
|
2013-03-14 13:03:50 +00:00
|
|
|
virtual ~InspectableWebContentsImpl() OVERRIDE;
|
|
|
|
|
|
|
|
virtual InspectableWebContentsView* GetView() const OVERRIDE;
|
|
|
|
virtual content::WebContents* GetWebContents() const OVERRIDE;
|
|
|
|
|
|
|
|
virtual void ShowDevTools() OVERRIDE;
|
|
|
|
|
|
|
|
content::WebContents* devtools_web_contents() { return devtools_web_contents_.get(); }
|
|
|
|
|
|
|
|
private:
|
2013-04-08 17:53:53 +00:00
|
|
|
void UpdateFrontendDockSide();
|
|
|
|
|
2013-03-27 14:33:00 +00:00
|
|
|
// content::DevToolsFrontendHostDelegate
|
|
|
|
|
|
|
|
virtual void ActivateWindow() OVERRIDE;
|
|
|
|
virtual void ChangeAttachedWindowHeight(unsigned height) OVERRIDE;
|
|
|
|
virtual void CloseWindow() OVERRIDE;
|
|
|
|
virtual void MoveWindow(int x, int y) OVERRIDE;
|
|
|
|
virtual void SetDockSide(const std::string& side) OVERRIDE;
|
|
|
|
virtual void OpenInNewTab(const std::string& url) OVERRIDE;
|
|
|
|
virtual void SaveToFile(const std::string& url,
|
|
|
|
const std::string& content,
|
|
|
|
bool save_as) OVERRIDE;
|
|
|
|
virtual void AppendToFile(const std::string& url,
|
|
|
|
const std::string& content) OVERRIDE;
|
|
|
|
virtual void RequestFileSystems() OVERRIDE;
|
|
|
|
virtual void AddFileSystem() OVERRIDE;
|
|
|
|
virtual void RemoveFileSystem(const std::string& file_system_path) OVERRIDE;
|
|
|
|
virtual void InspectedContentsClosing() OVERRIDE;
|
|
|
|
|
|
|
|
// content::WebContentsObserver
|
|
|
|
|
|
|
|
virtual void RenderViewCreated(content::RenderViewHost*) OVERRIDE;
|
2013-04-08 17:53:53 +00:00
|
|
|
virtual void DidFinishLoad(int64 frame_id,
|
|
|
|
const GURL& validated_url,
|
|
|
|
bool is_main_frame,
|
|
|
|
content::RenderViewHost*) OVERRIDE;
|
2013-03-27 14:33:00 +00:00
|
|
|
virtual void WebContentsDestroyed(content::WebContents*) OVERRIDE;
|
|
|
|
|
|
|
|
// content::WebContentsDelegate
|
|
|
|
|
|
|
|
virtual void HandleKeyboardEvent(content::WebContents*, const content::NativeWebKeyboardEvent&) OVERRIDE;
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
scoped_ptr<content::WebContents> web_contents_;
|
|
|
|
scoped_ptr<content::WebContents> devtools_web_contents_;
|
|
|
|
scoped_ptr<InspectableWebContentsView> view_;
|
2013-03-27 14:33:00 +00:00
|
|
|
scoped_refptr<content::DevToolsAgentHost> agent_host_;
|
|
|
|
scoped_ptr<content::DevToolsClientHost> frontend_host_;
|
2013-04-08 17:53:53 +00:00
|
|
|
std::string dock_side_;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsImpl);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|