HomeSort by relevance Sort by last modified time
    Searched full:controller (Results 1 - 25 of 1585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_controller_unittest.mm 55 forController:(TabController*)controller {
58 forController:(TabController*)controller {
80 // Tests creating the controller, sticking it in a window, and removing it.
83 scoped_nsobject<TabController> controller([[TabController alloc] init]);
84 [[window contentView] addSubview:[controller view]];
85 EXPECT_TRUE([controller tabView]);
86 EXPECT_EQ([[controller view] window], window);
87 [[controller view] display]; // Test drawing to ensure nothing leaks/crashes.
88 [[controller view] removeFromSuperview];
95 scoped_nsobject<TabController> controller([[TabController alloc] init])
    [all...]
  /hardware/broadcom/libbt/conf/asus/grouper/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/moto/wingray/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo4g/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/maguro/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_folder_target_unittest.mm 54 // Fake controller
55 id controller = [OCMockObject mockForClass:[BookmarkBarFolderController
58 [[[controller stub] andReturn:nil] folderController];
61 [[controller expect] addNewFolderControllerWithParentButton:sender];
64 [[BookmarkFolderTarget alloc] initWithController:controller]);
67 [controller verify];
75 // Fake controller
76 id controller = [OCMockObject mockForClass:[BookmarkBarFolderController
81 [[[controller stub] andReturn:controller] folderController]
    [all...]
bookmark_name_folder_controller_unittest.mm 29 controller([[BookmarkNameFolderController alloc]
34 [controller window]; // force nib load
37 [controller cancel:nil];
41 [controller setFolderName:@"Bozo"];
42 [controller cancel:nil];
46 [controller ok:nil];
65 controller([[BookmarkNameFolderController alloc]
70 [controller window]; // force nib load
73 [controller setFolderName:@"middle"];
74 [controller ok:nil]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
bug_report_window_controller_unittest.mm 31 tabContents->controller().LoadURL(GURL("chrome://newtab"),
34 BugReportWindowController* controller = [[BugReportWindowController alloc]
39 [controller setBugTypeIndex:2];
40 EXPECT_TRUE([controller isPhishingReport]);
41 [controller setBugTypeIndex:1];
42 EXPECT_FALSE([controller isPhishingReport]);
45 EXPECT_NSEQ(@"chrome://newtab/", [controller pageURL]);
46 EXPECT_NSEQ(@"New Tab", [controller pageTitle]);
50 EXPECT_EQ([[controller bugTypeList] count], 8U);
51 EXPECT_TRUE([controller sendScreenshot])
    [all...]
about_ipc_controller_unittest.mm 22 AboutIPCController* controller = [[AboutIPCController alloc] init];
23 EXPECT_TRUE([controller window]); // force nib load.
34 EXPECT_FALSE([controller filterOut:cdata.get()]);
41 [controller setDisplayViewMessages:NO];
42 EXPECT_TRUE([controller filterOut:cdata.get()]);
43 [controller setDisplayViewMessages:YES];
44 EXPECT_FALSE([controller filterOut:cdata.get()]);
45 [controller close];
confirm_quit_panel_controller_unittest.mm 30 ConfirmQuitPanelController* controller =
33 EXPECT_EQ(controller, [ConfirmQuitPanelController sharedController]);
34 [controller showWindow:nil];
35 [controller dismissPanel]; // Releases self.
36 // The controller should still be the singleton instance until after the
39 EXPECT_EQ(controller, [ConfirmQuitPanelController sharedController]);
43 Class controller = [ConfirmQuitPanelController class];
47 [controller keyCombinationForAccelerator:item]);
51 [controller keyCombinationForAccelerator:item]);
56 [controller keyCombinationForAccelerator:item])
    [all...]
  /external/chromium-trace/trace-viewer/src/
find_control_test.html 88 ctl.controller = {
112 var controller = new tracing.FindController();
113 controller.findNext();
114 controller.findPrevious();
119 var controller = new tracing.FindController();
120 controller.timeline = timeline;
123 controller.findNext();
125 controller.findPrevious();
131 var controller = new tracing.FindController();
132 controller.timeline = timeline
    [all...]
  /external/clang/test/Parser/
missing-selector-name.mm 15 PodiumWalkerController *controller;
16 return controller.PROP;
29 PodiumWalkerController *controller;
30 return controller.PROP;
50 PodiumWalkerController *controller;
51 return controller.PROP;
  /external/chromium/chrome/browser/bookmarks/
bookmark_context_menu_controller_unittest.cc 109 BookmarkContextMenuController controller(
112 ASSERT_TRUE(controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_REMOVE));
114 controller.ExecuteCommand(IDC_BOOKMARK_BAR_REMOVE);
132 BookmarkContextMenuController controller(
135 EXPECT_FALSE(controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_OPEN_ALL));
137 controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW));
139 controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO));
140 EXPECT_FALSE(controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_REMOVE));
142 controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK));
144 controller.IsCommandIdEnabled(IDC_BOOKMARK_BAR_NEW_FOLDER))
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_test.cc 114 BookmarkContextMenu controller(
117 ASSERT_TRUE(controller.IsCommandEnabled(IDC_BOOKMARK_BAR_REMOVE));
119 controller.ExecuteCommand(IDC_BOOKMARK_BAR_REMOVE);
137 BookmarkContextMenu controller(
140 EXPECT_FALSE(controller.IsCommandEnabled(IDC_BOOKMARK_BAR_OPEN_ALL));
142 controller.IsCommandEnabled(IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW));
144 controller.IsCommandEnabled(IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO));
145 EXPECT_FALSE(controller.IsCommandEnabled(IDC_BOOKMARK_BAR_REMOVE));
147 controller.IsCommandEnabled(IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK));
149 controller.IsCommandEnabled(IDC_BOOKMARK_BAR_NEW_FOLDER))
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar.h 19 // controller directly rather than pass messages through a bridge.
26 // InfoBarController* controller = infobar->controller();
27 // // Do something with the controller, and save a pointer so it can be
32 InfoBar(InfoBarController* controller) {
33 DCHECK(controller);
34 controller_ = controller;
37 InfoBarController* controller() { function in class:InfoBar
42 // Pointer to the infobar controller. Is never null.
infobar_container_controller.mm 19 // notifications and proxies them back to |controller|.
22 InfoBarNotificationObserver(InfoBarContainerController* controller)
23 : controller_(controller) {
105 - (void)willRemoveController:(InfoBarController*)controller {
106 [closingInfoBars_ addObject:controller];
109 - (void)removeController:(InfoBarController*)controller {
110 if (![infobarControllers_ containsObject:controller])
114 // we retain and autorelease the controller to prevent it from being
116 [[controller retain] autorelease];
117 [[controller view] removeFromSuperview]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
sad_tab_controller_unittest.mm 52 // Creates the controller and adds its view to contents, caller has ownership.
55 SadTabController* controller =
58 EXPECT_TRUE(controller);
59 NSView* view = [controller view];
62 return controller;
65 NSButton* GetLinkButton(SadTabController* controller) {
66 SadTabView* view = static_cast<SadTabView*>([controller view]);
78 scoped_nsobject<SadTabController> controller(CreateController());
79 EXPECT_TRUE(controller);
80 NSButton* link = GetLinkButton(controller);
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
encoding_menu_controller_unittest.cc 22 EncodingMenuController controller; local
25 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(0));
26 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(-1));
28 int num_valid_encoding_ids = controller.NumValidGUIEncodingIDs();
29 const int* valid_encodings = controller.ValidGUIEncodingIDs();
30 ASSERT_TRUE(controller.DoesCommandBelongToEncodingMenu(
34 ASSERT_TRUE(controller.DoesCommandBelongToEncodingMenu(valid_encodings[i]));
42 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(one_past_largest_id));
47 EncodingMenuController controller; local
52 controller.GetEncodingMenuItems(&profile_en, &english_items)
67 EncodingMenuController controller; local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebAnimationControllerImpl.cpp 62 AnimationController* controller = animationController(); local
63 if (!controller)
65 return controller->pauseAnimationAtTime(PassRefPtr<Element>(element)->renderer(),
74 AnimationController* controller = animationController(); local
75 if (!controller)
77 return controller->pauseTransitionAtTime(PassRefPtr<Element>(element)->renderer(),
84 AnimationController* controller = animationController(); local
85 if (!controller)
87 return controller->numberOfActiveAnimations();
92 AnimationController* controller = animationController() local
102 AnimationController* controller = animationController(); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.h 20 class Controller {
22 virtual ~Controller() {}
42 // Gets the controller the given |web_ui| is associated with. Returns NULL if
43 // there is no controller set.
44 static Controller* GetController(WebUI* web_ui);
46 // Sets the controller on a tab contents.
47 static void SetController(TabContents* contents, Controller* controller);
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.cpp 103 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
104 controller->setDumpApplicationCacheDelegateCallbacks(true);
110 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
111 controller->setDumpAsPDF(true);
117 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
118 controller->setDumpAsText(true);
121 controller->setGeneratePixelResults(argumentCount > 0 ? JSValueToBoolean(context, arguments[0]) : false);
128 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
129 controller->setDumpBackForwardList(true);
135 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)) local
142 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
164 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
172 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
179 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
186 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
193 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
200 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
207 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
214 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
221 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
228 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
235 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
242 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
249 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
256 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
279 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
287 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
304 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
331 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
340 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
347 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
361 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
386 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
395 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
403 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
417 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
425 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
432 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
440 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
449 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
465 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
473 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
488 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
495 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
504 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
519 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
527 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
536 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
545 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
554 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
571 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
595 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
613 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
656 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
671 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
680 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
710 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
717 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
725 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
869 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
919 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
935 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
958 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
980 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
999 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1015 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1031 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1104 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1124 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1163 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1179 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1242 LayoutTestController* controller = reinterpret_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1270 LayoutTestController* controller = reinterpret_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1289 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1388 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1444 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1541 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1556 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1571 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1590 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1635 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1644 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1695 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1720 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1727 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1735 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1747 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1759 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1780 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1796 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1812 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1827 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1834 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1841 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1859 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1877 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1892 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1907 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1921 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1949 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1956 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1976 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
1988 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2001 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2009 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2028 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2052 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2074 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2080 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2086 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2092 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2105 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); local
2113 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(object)); local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
wizard_controller_browsertest.cc 54 mock_var = CreateMockWizardScreenHelper<mocked_class>::Create(controller()); \
55 controller()->screen_name.reset(mock_var); \
74 WizardController* const wizard = controller();
126 EXPECT_EQ(NULL, controller()->current_screen());
128 controller()->ShowFirstScreen(WizardController::kNetworkScreenName);
134 controller()->OnExit(exit_code);
150 EXPECT_EQ(controller()->GetNetworkScreen(), controller()->current_screen());
155 EXPECT_EQ(controller()->GetEulaScreen(), controller()->current_screen())
    [all...]
update_screen_browsertest.cc 87 ASSERT_TRUE(controller() != NULL);
89 controller()->set_observer(mock_screen_observer.get());
90 UpdateScreen* update_screen = controller()->GetUpdateScreen();
92 ASSERT_EQ(controller()->current_screen(), update_screen);
95 controller()->set_observer(NULL);
99 ASSERT_TRUE(controller() != NULL);
101 controller()->set_observer(mock_screen_observer.get());
102 UpdateScreen* update_screen = controller()->GetUpdateScreen();
104 ASSERT_EQ(controller()->current_screen(), update_screen);
115 controller()->set_observer(NULL)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_install_dialog_controller_unittest.mm 113 controller([[ExtensionInstallDialogController alloc]
122 [controller window]; // force nib load
125 EXPECT_NSEQ(@"ExtensionInstallPrompt", [controller windowNibName]);
131 EXPECT_TRUE([controller iconView] != nil);
132 EXPECT_TRUE([[controller iconView] image] != nil);
134 EXPECT_TRUE([controller titleField] != nil);
135 EXPECT_NE(0u, [[[controller titleField] stringValue] length]);
137 EXPECT_TRUE([controller subtitleField] != nil);
138 EXPECT_NE(0u, [[[controller subtitleField] stringValue] length]);
139 EXPECT_NE('^', [[[controller subtitleField] stringValue] characterAtIndex:0])
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>