Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Side by Side Diff: chrome/browser/chromeos/login/registration_screen.h

Issue 8907029: AURA/X11: Handle VKEY_MENU accelerator on content area (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/chromeos/login/screen_observer.h" 13 #include "chrome/browser/chromeos/login/screen_observer.h"
14 #include "chrome/browser/chromeos/login/view_screen.h" 14 #include "chrome/browser/chromeos/login/view_screen.h"
15 #include "chrome/browser/chromeos/login/web_page_screen.h" 15 #include "chrome/browser/chromeos/login/web_page_screen.h"
16 #include "chrome/browser/chromeos/login/web_page_view.h" 16 #include "chrome/browser/chromeos/login/web_page_view.h"
17 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h"
17 18
18 class GURL; 19 class GURL;
19 class Profile; 20 class Profile;
20 21
21 namespace net { 22 namespace net {
22 class URLRequest; 23 class URLRequest;
23 class URLRequestJob; 24 class URLRequestJob;
24 } // namespace net 25 } // namespace net
25 26
26 namespace chromeos { 27 namespace chromeos {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 // TabContentsDelegate implementation: 84 // TabContentsDelegate implementation:
84 virtual TabContents* OpenURLFromTab(TabContents* source, 85 virtual TabContents* OpenURLFromTab(TabContents* source,
85 const OpenURLParams& params) OVERRIDE; 86 const OpenURLParams& params) OVERRIDE;
86 87
87 virtual void HandleKeyboardEvent( 88 virtual void HandleKeyboardEvent(
88 const NativeWebKeyboardEvent& event) OVERRIDE; 89 const NativeWebKeyboardEvent& event) OVERRIDE;
89 90
90 // WebPageScreen implementation: 91 // WebPageScreen implementation:
91 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE; 92 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE;
92 93
94 UnhandledKeyboardEventHandler unhandled_keyboard_handler_;
95
93 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen); 96 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen);
94 }; 97 };
95 98
96 } // namespace chromeos 99 } // namespace chromeos
97 100
98 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ 101 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698