This source file includes following definitions.
- HasKeyboardWindow
- GetKeyboardWindow
- GetBrowserContext
- GetInputMethod
- RequestAudioInput
- LoadSystemKeyboard
- ReloadKeyboardIfNeeded
#include "ash/shell/keyboard_controller_proxy_stub.h"
#include "ash/shell.h"
#include "ash/shell_delegate.h"
#include "ui/aura/window.h"
#include "ui/wm/core/input_method_event_filter.h"
using namespace content;
namespace ash {
KeyboardControllerProxyStub::KeyboardControllerProxyStub() {
}
KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
}
bool KeyboardControllerProxyStub::HasKeyboardWindow() const {
return keyboard_;
}
aura::Window* KeyboardControllerProxyStub::GetKeyboardWindow() {
if (!keyboard_) {
keyboard_.reset(new aura::Window(&delegate_));
keyboard_->Init(aura::WINDOW_LAYER_NOT_DRAWN);
}
return keyboard_.get();
}
BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() {
return Shell::GetInstance()->delegate()->GetActiveBrowserContext();
}
ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
return Shell::GetInstance()->input_method_filter()->input_method();
}
void KeyboardControllerProxyStub::RequestAudioInput(
WebContents* web_contents,
const MediaStreamRequest& request,
const MediaResponseCallback& callback) {
}
void KeyboardControllerProxyStub::LoadSystemKeyboard() {
}
void KeyboardControllerProxyStub::ReloadKeyboardIfNeeded() {
}
}