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

Side by Side Diff: chrome/browser/ui/cocoa/tab_contents/sad_tab_controller_unittest.mm

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. Created 8 years, 9 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) 2011 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 #include "base/debug/debugger.h" 5 #include "base/debug/debugger.h"
6 #include "base/memory/scoped_nsobject.h" 6 #include "base/memory/scoped_nsobject.h"
7 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" 7 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
8 #import "chrome/browser/ui/cocoa/hyperlink_text_view.h" 8 #import "chrome/browser/ui/cocoa/hyperlink_text_view.h"
9 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_controller.h" 9 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_controller.h"
10 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h" 10 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h"
11 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 11 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
12 #include "chrome/test/base/testing_profile.h" 12 #include "chrome/test/base/testing_profile.h"
13 #include "content/browser/tab_contents/test_tab_contents.h"
14 13
15 @interface SadTabView (ExposedForTesting) 14 @interface SadTabView (ExposedForTesting)
16 // Implementation is below. 15 // Implementation is below.
17 - (HyperlinkTextView*)helpTextView; 16 - (HyperlinkTextView*)helpTextView;
18 @end 17 @end
19 18
20 @implementation SadTabView (ExposedForTesting) 19 @implementation SadTabView (ExposedForTesting)
21 - (HyperlinkTextView*)helpTextView { 20 - (HyperlinkTextView*)helpTextView {
22 return help_.get(); 21 return help_.get();
23 } 22 }
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 // Add handler for the openLearnMoreAboutCrashLink: action to NSApp for testing 104 // Add handler for the openLearnMoreAboutCrashLink: action to NSApp for testing
106 // purposes. Normally this would be sent up the responder tree correctly, but 105 // purposes. Normally this would be sent up the responder tree correctly, but
107 // since tests run in the background, key window and main window are never set 106 // since tests run in the background, key window and main window are never set
108 // on NSApplication. Adding it to NSApplication directly removes the need for 107 // on NSApplication. Adding it to NSApplication directly removes the need for
109 // worrying about what the current window with focus is. 108 // worrying about what the current window with focus is.
110 - (void)openLearnMoreAboutCrashLink:(id)sender { 109 - (void)openLearnMoreAboutCrashLink:(id)sender {
111 SadTabControllerTest::link_clicked_ = true; 110 SadTabControllerTest::link_clicked_ = true;
112 } 111 }
113 112
114 @end 113 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698