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

Unified Diff: chrome/browser/cocoa/tab_strip_controller.mm

Issue 63047: Revert "Initial implemention of Mac Omnibox." (Closed)
Patch Set: Created 11 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 | « chrome/browser/cocoa/tab_contents_controller.mm ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/tab_strip_controller.mm
diff --git a/chrome/browser/cocoa/tab_strip_controller.mm b/chrome/browser/cocoa/tab_strip_controller.mm
index 28678d704a337a57f810a5c03e34bcb314d5c7bb..46a98df6348123caa10d8f4c35bccdea03eb0484 100644
--- a/chrome/browser/cocoa/tab_strip_controller.mm
+++ b/chrome/browser/cocoa/tab_strip_controller.mm
@@ -295,14 +295,6 @@ class TabStripBridge : public TabStripModelObserver {
previousContents:(TabContents*)oldContents
atIndex:(NSInteger)index
userGesture:(bool)wasUserGesture {
- int selectedIndex = 0;
- for (TabController* current in tabArray_) {
- if ([current selected]) {
- break;
- }
- ++selectedIndex;
- }
-
// De-select all other tabs and select the new tab.
int i = 0;
for (TabController* current in tabArray_) {
@@ -314,13 +306,6 @@ class TabStripBridge : public TabStripModelObserver {
NSView* selectedTab = [self viewAtIndex:index];
[tabView_ addSubview:selectedTab positioned:NSWindowAbove relativeTo:nil];
- // Tell the current tab to lose focus.
- if (selectedIndex < (int)[tabArray_ count]) {
- TabContentsController* selectedController =
- [tabContentsArray_ objectAtIndex:selectedIndex];
- [selectedController defocusLocationBar];
- }
-
// Tell the new tab contents it is about to become the selected tab. Here it
// can do things like make sure the toolbar is up to date.
TabContentsController* newController =
« no previous file with comments | « chrome/browser/cocoa/tab_contents_controller.mm ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698