1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEBUI_INSPECT_INSPECT_UI_H_
#define CHROME_BROWSER_UI_WEBUI_INSPECT_INSPECT_UI_H_
#include <map>
#include <memory>
#include <string>
#include "base/memory/scoped_refptr.h"
#include "base/values.h"
#include "chrome/common/webui_url_constants.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_ui_controller.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/browser/webui_config.h"
#include "content/public/common/url_constants.h"
namespace content {
class DevToolsAgentHost;
}
class Browser;
class DevToolsTargetsUIHandler;
class InspectUI;
class PortForwardingStatusSerializer;
// chrome://inspect isn't supported on Android nor iOS. Page debugging is
// handled by a remote devtools on the host machine, and other elements, i.e.
// extensions aren't supported.
class InspectUIConfig : public content::DefaultWebUIConfig<InspectUI> {
public:
InspectUIConfig()
: DefaultWebUIConfig(content::kChromeUIScheme,
chrome::kChromeUIInspectHost) {}
};
class InspectUI : public content::WebUIController,
public content::WebContentsObserver {
public:
explicit InspectUI(content::WebUI* web_ui);
InspectUI(const InspectUI&) = delete;
InspectUI& operator=(const InspectUI&) = delete;
~InspectUI() override;
void InitUI();
void Inspect(const std::string& source_id, const std::string& target_id);
void InspectFallback(const std::string& source_id,
const std::string& target_id);
void Activate(const std::string& source_id, const std::string& target_id);
void Close(const std::string& source_id, const std::string& target_id);
void Reload(const std::string& source_id, const std::string& target_id);
void Open(const std::string& source_id,
const std::string& browser_id,
const std::string& url);
void Pause(const std::string& source_id, const std::string& target_id);
void InspectBrowserWithCustomFrontend(const std::string& source_id,
const std::string& browser_id,
const GURL& frontend_url);
void PopulateNativeUITargets(const base::Value::List& targets);
void ShowNativeUILaunchButton(bool enabled);
void SetHostVersion(const std::string& version);
static void InspectDevices(Browser* browser);
private:
// content::WebContentsObserver:
void WebContentsDestroyed() override;
void StartListeningNotifications();
void StopListeningNotifications();
void UpdateDiscoverUsbDevicesEnabled();
void UpdatePortForwardingEnabled();
void UpdatePortForwardingConfig();
void UpdateTCPDiscoveryEnabled();
void UpdateTCPDiscoveryConfig();
void UpdateBubbleLockingCheckbox();
void SetPortForwardingDefaults();
const base::Value* GetPrefValue(const char* name);
void AddTargetUIHandler(std::unique_ptr<DevToolsTargetsUIHandler> handler);
DevToolsTargetsUIHandler* FindTargetHandler(const std::string& source_id);
scoped_refptr<content::DevToolsAgentHost> FindTarget(
const std::string& source_id,
const std::string& target_id);
void PopulateTargets(const std::string& source_id,
const base::Value& targets);
void PopulatePortStatus(base::Value status);
void ShowIncognitoWarning();
// A scoped container for preference change registries.
PrefChangeRegistrar pref_change_registrar_;
std::map<std::string, std::unique_ptr<DevToolsTargetsUIHandler>>
target_handlers_;
std::unique_ptr<PortForwardingStatusSerializer> port_status_serializer_;
};
#endif // CHROME_BROWSER_UI_WEBUI_INSPECT_INSPECT_UI_H_
|