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

Side by Side Diff: content/browser/web_contents/web_contents_view_mac.mm

Issue 10702048: Remove the code to wait on disconnected child processes to get the exit code. This was done in r101… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 years, 5 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) 2012 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 #import <Carbon/Carbon.h> 5 #import <Carbon/Carbon.h>
6 6
7 #import "content/browser/web_contents/web_contents_view_mac.h" 7 #import "content/browser/web_contents/web_contents_view_mac.h"
8 8
9 #include <string> 9 #include <string>
10 10
11 #import "base/mac/scoped_sending_event.h" 11 #import "base/mac/scoped_sending_event.h"
12 #include "base/message_loop.h"
12 #import "base/message_pump_mac.h" 13 #import "base/message_pump_mac.h"
13 #include "content/browser/renderer_host/popup_menu_helper_mac.h" 14 #include "content/browser/renderer_host/popup_menu_helper_mac.h"
14 #include "content/browser/renderer_host/render_view_host_factory.h" 15 #include "content/browser/renderer_host/render_view_host_factory.h"
15 #include "content/browser/renderer_host/render_view_host_impl.h" 16 #include "content/browser/renderer_host/render_view_host_impl.h"
16 #include "content/browser/renderer_host/render_widget_host_view_mac.h" 17 #include "content/browser/renderer_host/render_widget_host_view_mac.h"
17 #include "content/browser/web_contents/web_contents_impl.h" 18 #include "content/browser/web_contents/web_contents_impl.h"
18 #import "content/browser/web_contents/web_drag_dest_mac.h" 19 #import "content/browser/web_contents/web_drag_dest_mac.h"
19 #import "content/browser/web_contents/web_drag_source_mac.h" 20 #import "content/browser/web_contents/web_drag_source_mac.h"
20 #include "content/common/view_messages.h" 21 #include "content/common/view_messages.h"
21 #include "content/public/browser/web_contents_delegate.h" 22 #include "content/public/browser/web_contents_delegate.h"
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 [[[notification userInfo] objectForKey:kSelectionDirection] 522 [[[notification userInfo] objectForKey:kSelectionDirection]
522 unsignedIntegerValue]; 523 unsignedIntegerValue];
523 if (direction == NSDirectSelection) 524 if (direction == NSDirectSelection)
524 return; 525 return;
525 526
526 [self webContents]-> 527 [self webContents]->
527 FocusThroughTabTraversal(direction == NSSelectingPrevious); 528 FocusThroughTabTraversal(direction == NSSelectingPrevious);
528 } 529 }
529 530
530 @end 531 @end
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.mm ('k') | content/common/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698