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

Side by Side Diff: chrome/browser/tab_contents/render_view_context_menu_browsertest_util.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 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 #include "chrome/browser/tab_contents/render_view_context_menu_browsertest_util. h" 5 #include "chrome/browser/tab_contents/render_view_context_menu_browsertest_util. h"
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "chrome/browser/tab_contents/render_view_context_menu.h" 9 #include "chrome/browser/tab_contents/render_view_context_menu.h"
10 #include "chrome/common/chrome_notification_types.h" 10 #include "chrome/common/chrome_notification_types.h"
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 23
24 void ContextMenuNotificationObserver::Observe( 24 void ContextMenuNotificationObserver::Observe(
25 int type, 25 int type,
26 const content::NotificationSource& source, 26 const content::NotificationSource& source,
27 const content::NotificationDetails& details) { 27 const content::NotificationDetails& details) {
28 switch (type) { 28 switch (type) {
29 case chrome::NOTIFICATION_RENDER_VIEW_CONTEXT_MENU_SHOWN: { 29 case chrome::NOTIFICATION_RENDER_VIEW_CONTEXT_MENU_SHOWN: {
30 RenderViewContextMenu* context_menu = 30 RenderViewContextMenu* context_menu =
31 content::Source<RenderViewContextMenu>(source).ptr(); 31 content::Source<RenderViewContextMenu>(source).ptr();
32 MessageLoop::current()->PostTask( 32 base::MessageLoop::current()->PostTask(
33 FROM_HERE, 33 FROM_HERE,
34 base::Bind(&ContextMenuNotificationObserver::ExecuteCommand, 34 base::Bind(&ContextMenuNotificationObserver::ExecuteCommand,
35 base::Unretained(this), context_menu)); 35 base::Unretained(this),
36 context_menu));
36 break; 37 break;
37 } 38 }
38 39
39 default: 40 default:
40 NOTREACHED(); 41 NOTREACHED();
41 } 42 }
42 } 43 }
43 44
44 void ContextMenuNotificationObserver::ExecuteCommand( 45 void ContextMenuNotificationObserver::ExecuteCommand(
45 RenderViewContextMenu* context_menu) { 46 RenderViewContextMenu* context_menu) {
46 context_menu->ExecuteCommand(command_to_execute_, 0); 47 context_menu->ExecuteCommand(command_to_execute_, 0);
47 context_menu->Cancel(); 48 context_menu->Cancel();
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698