blob: 6bf946b16d6b90ed1c9382434ff79f3ea43571f9 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/accessibility/chromevox_panel.h"
#include "ash/public/interfaces/constants.mojom.h"
#include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
#include "content/public/common/service_manager_connection.h"
#include "extensions/common/constants.h"
#include "services/service_manager/public/cpp/connector.h"
#include "ui/views/widget/widget.h"
namespace {
const char kChromeVoxPanelRelativeUrl[] = "/cvox2/background/panel.html";
const char kDisableSpokenFeedbackURLFragment[] = "close";
const char kFocusURLFragment[] = "focus";
const char kFullscreenURLFragment[] = "fullscreen";
const char kWidgetName[] = "ChromeVoxPanel";
} // namespace
class ChromeVoxPanel::ChromeVoxPanelWebContentsObserver
: public content::WebContentsObserver {
public:
ChromeVoxPanelWebContentsObserver(content::WebContents* web_contents,
ChromeVoxPanel* panel)
: content::WebContentsObserver(web_contents), panel_(panel) {}
~ChromeVoxPanelWebContentsObserver() override {}
void DidFinishNavigation(
content::NavigationHandle* navigation_handle) override {
// The ChromeVox panel uses the URL fragment to communicate state
// to this panel host.
std::string fragment = web_contents()->GetLastCommittedURL().ref();
if (fragment == kDisableSpokenFeedbackURLFragment)
chromeos::AccessibilityManager::Get()->EnableSpokenFeedback(false);
else if (fragment == kFullscreenURLFragment)
panel_->EnterFullscreen();
else if (fragment == kFocusURLFragment)
panel_->Focus();
else
panel_->ExitFullscreen();
}
private:
ChromeVoxPanel* panel_;
DISALLOW_COPY_AND_ASSIGN(ChromeVoxPanelWebContentsObserver);
};
ChromeVoxPanel::ChromeVoxPanel(content::BrowserContext* browser_context)
: AccessibilityPanel(browser_context, GetUrlForContent(), kWidgetName) {
web_contents_observer_.reset(
new ChromeVoxPanelWebContentsObserver(GetWebContents(), this));
}
ChromeVoxPanel::~ChromeVoxPanel() {}
void ChromeVoxPanel::EnterFullscreen() {
Focus();
SetAccessibilityPanelFullscreen(true);
}
void ChromeVoxPanel::ExitFullscreen() {
GetWidget()->Deactivate();
GetWidget()->widget_delegate()->set_can_activate(false);
SetAccessibilityPanelFullscreen(false);
}
void ChromeVoxPanel::Focus() {
GetWidget()->widget_delegate()->set_can_activate(true);
GetWidget()->Activate();
GetContentsView()->RequestFocus();
}
void ChromeVoxPanel::SetAccessibilityPanelFullscreen(bool fullscreen) {
// Connect to the accessibility mojo interface in ash.
ash::mojom::AccessibilityControllerPtr accessibility_controller;
content::ServiceManagerConnection::GetForProcess()
->GetConnector()
->BindInterface(ash::mojom::kServiceName, &accessibility_controller);
accessibility_controller->SetAccessibilityPanelFullscreen(fullscreen);
}
std::string ChromeVoxPanel::GetUrlForContent() {
std::string url("chrome-extension://");
url += extension_misc::kChromeVoxExtensionId;
url += kChromeVoxPanelRelativeUrl;
return url;
}