blob: 1cdabab8b8a7d14410d581e78c80c112da870475 (
plain)
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
|
// Copyright (c) 2012 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/ui/views/ash/user_gesture_handler.h"
#include "ash/wm/window_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "content/public/browser/web_contents.h"
namespace {
// Returns the currently-active WebContents belonging to the active browser, or
// NULL if there's no currently-active browser.
content::WebContents* GetActiveWebContents() {
Browser* browser = BrowserList::GetLastActive();
if (!browser)
return NULL;
if (!ash::wm::IsActiveWindow(browser->window()->GetNativeHandle()))
return NULL;
TabContentsWrapper* wrapper = browser->GetSelectedTabContentsWrapper();
if (!wrapper)
return NULL;
return wrapper->web_contents();
}
} // namespace
UserGestureHandler::UserGestureHandler() {}
UserGestureHandler::~UserGestureHandler() {}
bool UserGestureHandler::OnUserGesture(
aura::client::UserGestureClient::Gesture gesture) {
switch (gesture) {
case aura::client::UserGestureClient::GESTURE_BACK: {
content::WebContents* contents = GetActiveWebContents();
if (contents && contents->GetController().CanGoBack()) {
contents->GetController().GoBack();
return true;
}
break;
}
case aura::client::UserGestureClient::GESTURE_FORWARD: {
content::WebContents* contents = GetActiveWebContents();
if (contents && contents->GetController().CanGoForward()) {
contents->GetController().GoForward();
return true;
}
break;
}
default:
break;
}
return false;
}
|