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

Side by Side Diff: chrome/browser/ui/gtk/browser_window_gtk.h

Issue 10383239: Move NativeWebKeyboardEvent to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 7 months 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UI_GTK_BROWSER_WINDOW_GTK_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
7 #pragma once 7 #pragma once
8 8
9 #include <gtk/gtk.h> 9 #include <gtk/gtk.h>
10 10
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 virtual void ShowPageInfo(Profile* profile, 137 virtual void ShowPageInfo(Profile* profile,
138 const GURL& url, 138 const GURL& url,
139 const content::SSLStatus& ssl, 139 const content::SSLStatus& ssl,
140 bool show_history) OVERRIDE; 140 bool show_history) OVERRIDE;
141 virtual void ShowWebsiteSettings(Profile* profile, 141 virtual void ShowWebsiteSettings(Profile* profile,
142 TabContentsWrapper* tab_contents_wrapper, 142 TabContentsWrapper* tab_contents_wrapper,
143 const GURL& url, 143 const GURL& url,
144 const content::SSLStatus& ssl, 144 const content::SSLStatus& ssl,
145 bool show_history) OVERRIDE; 145 bool show_history) OVERRIDE;
146 virtual void ShowAppMenu() OVERRIDE; 146 virtual void ShowAppMenu() OVERRIDE;
147 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 147 virtual bool PreHandleKeyboardEvent(
148 bool* is_keyboard_shortcut) OVERRIDE; 148 const content::NativeWebKeyboardEvent& event,
149 bool* is_keyboard_shortcut) OVERRIDE;
149 virtual void HandleKeyboardEvent( 150 virtual void HandleKeyboardEvent(
150 const NativeWebKeyboardEvent& event) OVERRIDE; 151 const content::NativeWebKeyboardEvent& event) OVERRIDE;
151 virtual void ShowCreateWebAppShortcutsDialog( 152 virtual void ShowCreateWebAppShortcutsDialog(
152 TabContentsWrapper* tab_contents) OVERRIDE; 153 TabContentsWrapper* tab_contents) OVERRIDE;
153 virtual void ShowCreateChromeAppShortcutsDialog( 154 virtual void ShowCreateChromeAppShortcutsDialog(
154 Profile* profile, 155 Profile* profile,
155 const Extension* app) OVERRIDE; 156 const Extension* app) OVERRIDE;
156 virtual void Cut() OVERRIDE; 157 virtual void Cut() OVERRIDE;
157 virtual void Copy() OVERRIDE; 158 virtual void Copy() OVERRIDE;
158 virtual void Paste() OVERRIDE; 159 virtual void Paste() OVERRIDE;
159 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; 160 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE;
160 virtual void HideInstant() OVERRIDE; 161 virtual void HideInstant() OVERRIDE;
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; 563 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_;
563 564
564 FullscreenExitBubbleType fullscreen_exit_bubble_type_; 565 FullscreenExitBubbleType fullscreen_exit_bubble_type_;
565 566
566 content::NotificationRegistrar registrar_; 567 content::NotificationRegistrar registrar_;
567 568
568 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); 569 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk);
569 }; 570 };
570 571
571 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 572 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/web_dialog_window_controller.mm ('k') | chrome/browser/ui/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698