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

Unified Diff: chrome/browser/ui/cocoa/dev_tools_controller.mm

Issue 13084017: Fix OmniboxViewTest.SelectAllOnClick (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 6 Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/view_id_util_browsertest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/dev_tools_controller.mm
===================================================================
--- chrome/browser/ui/cocoa/dev_tools_controller.mm (revision 192786)
+++ chrome/browser/ui/cocoa/dev_tools_controller.mm (working copy)
@@ -82,6 +82,7 @@
[splitView_ setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
[splitView_ setDelegate:self];
[splitView_ setDividerHidden:NO];
+ view_id_util::SetID(splitView_.get(), VIEW_ID_CONTENTS_SPLIT);
dockSide_ = DEVTOOLS_DOCK_SIDE_BOTTOM;
}
@@ -89,6 +90,7 @@
}
- (void)dealloc {
+ view_id_util::UnsetID(splitView_.get());
[splitView_ setDelegate:nil];
[super dealloc];
}
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/view_id_util_browsertest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698