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

Unified Diff: webkit/tools/test_shell/mac/test_shell_webview.h

Issue 15028002: Delete test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dummy test_shell build target. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: webkit/tools/test_shell/mac/test_shell_webview.h
diff --git a/webkit/tools/test_shell/mac/test_shell_webview.h b/webkit/tools/test_shell/mac/test_shell_webview.h
deleted file mode 100644
index 02feb218dfdd21b27216a3a317a974ce2f0a5080..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/mac/test_shell_webview.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2008 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.
-
-#import <Cocoa/Cocoa.h>
-
-class TestShell;
-
-// A view to wrap the WebCore view and help it live in a Cocoa world. The
-// (rough) equivalent of Apple's WebView.
-
-@interface TestShellWebView : NSView {
- @private
- TestShell *shell_; // weak
- NSTrackingArea *trackingArea_;
-}
-
-- (IBAction)goBack:(id)sender;
-- (IBAction)goForward:(id)sender;
-- (IBAction)reload:(id)sender;
-- (IBAction)stopLoading:(id)sender;
-- (IBAction)takeURLStringValueFrom:(NSTextField *)sender;
-
-- (void)mouseDown:(NSEvent *)theEvent;
-- (void)rightMouseDown:(NSEvent *)theEvent;
-- (void)otherMouseDown:(NSEvent *)theEvent;
-- (void)mouseUp:(NSEvent *)theEvent;
-- (void)rightMouseUp:(NSEvent *)theEvent;
-- (void)otherMouseUp:(NSEvent *)theEvent;
-- (void)mouseMoved:(NSEvent *)theEvent;
-- (void)mouseDragged:(NSEvent *)theEvent;
-- (void)scrollWheel:(NSEvent *)theEvent;
-- (void)rightMouseDragged:(NSEvent *)theEvent;
-- (void)otherMouseDragged:(NSEvent *)theEvent;
-- (void)mouseEntered:(NSEvent *)theEvent;
-- (void)mouseExited:(NSEvent *)theEvent;
-- (void)keyDown:(NSEvent *)theEvent;
-- (void)keyUp:(NSEvent *)theEvent;
-- (BOOL)isOpaque;
-- (void)setFrame:(NSRect)frameRect;
-- (void)setIsActive:(BOOL)active;
-
-@property (nonatomic, assign) TestShell *shell;
-
-@end

Powered by Google App Engine
This is Rietveld 408576698