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

Side by Side Diff: webkit/tools/test_shell/mac/test_shell_webview.h

Issue 255094: [Mac] Properly call setIsActive() when becoming and resigning key window. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « no previous file | webkit/tools/test_shell/mac/test_shell_webview.mm » ('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) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 class TestShell; 7 class TestShell;
8 8
9 // A view to wrap the WebCore view and help it live in a Cocoa world. The 9 // A view to wrap the WebCore view and help it live in a Cocoa world. The
10 // (rough) equivalent of Apple's WebView. 10 // (rough) equivalent of Apple's WebView.
(...skipping 20 matching lines...) Expand all
31 - (void)mouseDragged:(NSEvent *)theEvent; 31 - (void)mouseDragged:(NSEvent *)theEvent;
32 - (void)scrollWheel:(NSEvent *)theEvent; 32 - (void)scrollWheel:(NSEvent *)theEvent;
33 - (void)rightMouseDragged:(NSEvent *)theEvent; 33 - (void)rightMouseDragged:(NSEvent *)theEvent;
34 - (void)otherMouseDragged:(NSEvent *)theEvent; 34 - (void)otherMouseDragged:(NSEvent *)theEvent;
35 - (void)mouseEntered:(NSEvent *)theEvent; 35 - (void)mouseEntered:(NSEvent *)theEvent;
36 - (void)mouseExited:(NSEvent *)theEvent; 36 - (void)mouseExited:(NSEvent *)theEvent;
37 - (void)keyDown:(NSEvent *)theEvent; 37 - (void)keyDown:(NSEvent *)theEvent;
38 - (void)keyUp:(NSEvent *)theEvent; 38 - (void)keyUp:(NSEvent *)theEvent;
39 - (BOOL)isOpaque; 39 - (BOOL)isOpaque;
40 - (void)setFrame:(NSRect)frameRect; 40 - (void)setFrame:(NSRect)frameRect;
41 - (void)setIsActive:(BOOL)active;
41 42
42 @property (nonatomic, assign) TestShell *shell; 43 @property (nonatomic, assign) TestShell *shell;
43 44
44 @end 45 @end
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/test_shell/mac/test_shell_webview.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698