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

Side by Side Diff: chrome/browser/ui/panels/panel.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
« no previous file with comments | « chrome/browser/ui/panels/native_panel.h ('k') | chrome/browser/ui/panels/panel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PANELS_PANEL_H_ 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/ui/browser_window.h" 9 #include "chrome/browser/ui/browser_window.h"
10 10
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 const GURL& url, 161 const GURL& url,
162 const content::SSLStatus& ssl, 162 const content::SSLStatus& ssl,
163 bool show_history) OVERRIDE; 163 bool show_history) OVERRIDE;
164 virtual void ShowWebsiteSettings(Profile* profile, 164 virtual void ShowWebsiteSettings(Profile* profile,
165 TabContentsWrapper* tab_contents_wrapper, 165 TabContentsWrapper* tab_contents_wrapper,
166 const GURL& url, 166 const GURL& url,
167 const content::SSLStatus& ssl, 167 const content::SSLStatus& ssl,
168 bool show_history) OVERRIDE; 168 bool show_history) OVERRIDE;
169 virtual void ShowAppMenu() OVERRIDE; 169 virtual void ShowAppMenu() OVERRIDE;
170 virtual bool PreHandleKeyboardEvent( 170 virtual bool PreHandleKeyboardEvent(
171 const NativeWebKeyboardEvent& event, 171 const content::NativeWebKeyboardEvent& event,
172 bool* is_keyboard_shortcut) OVERRIDE; 172 bool* is_keyboard_shortcut) OVERRIDE;
173 virtual void HandleKeyboardEvent( 173 virtual void HandleKeyboardEvent(
174 const NativeWebKeyboardEvent& event) OVERRIDE; 174 const content::NativeWebKeyboardEvent& event) OVERRIDE;
175 virtual void ShowCreateWebAppShortcutsDialog( 175 virtual void ShowCreateWebAppShortcutsDialog(
176 TabContentsWrapper* tab_contents) OVERRIDE; 176 TabContentsWrapper* tab_contents) OVERRIDE;
177 virtual void ShowCreateChromeAppShortcutsDialog( 177 virtual void ShowCreateChromeAppShortcutsDialog(
178 Profile* profile, const Extension* app) OVERRIDE; 178 Profile* profile, const Extension* app) OVERRIDE;
179 virtual void Cut() OVERRIDE; 179 virtual void Cut() OVERRIDE;
180 virtual void Copy() OVERRIDE; 180 virtual void Copy() OVERRIDE;
181 virtual void Paste() OVERRIDE; 181 virtual void Paste() OVERRIDE;
182 #if defined(OS_MACOSX) 182 #if defined(OS_MACOSX)
183 virtual void OpenTabpose() OVERRIDE; 183 virtual void OpenTabpose() OVERRIDE;
184 virtual void EnterPresentationMode( 184 virtual void EnterPresentationMode(
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 AttentionMode attention_mode_; 387 AttentionMode attention_mode_;
388 388
389 ExpansionState expansion_state_; 389 ExpansionState expansion_state_;
390 390
391 content::NotificationRegistrar registrar_; 391 content::NotificationRegistrar registrar_;
392 392
393 DISALLOW_COPY_AND_ASSIGN(Panel); 393 DISALLOW_COPY_AND_ASSIGN(Panel);
394 }; 394 };
395 395
396 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ 396 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/native_panel.h ('k') | chrome/browser/ui/panels/panel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698