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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_guest_helper.cc

Issue 11554030: <webview>: Add name attribute (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 7 years, 11 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 "content/browser/browser_plugin/browser_plugin_guest_helper.h" 5 #include "content/browser/browser_plugin/browser_plugin_guest_helper.h"
6 6
7 #include "content/browser/browser_plugin/browser_plugin_guest.h" 7 #include "content/browser/browser_plugin/browser_plugin_guest.h"
8 #include "content/common/drag_messages.h" 8 #include "content/common/drag_messages.h"
9 #include "content/common/view_messages.h" 9 #include "content/common/view_messages.h"
10 #include "content/public/browser/render_view_host.h" 10 #include "content/public/browser/render_view_host.h"
(...skipping 23 matching lines...) Expand all
34 switch (message.type()) { 34 switch (message.type()) {
35 case DragHostMsg_UpdateDragCursor::ID: 35 case DragHostMsg_UpdateDragCursor::ID:
36 case ViewHostMsg_HandleInputEvent_ACK::ID: 36 case ViewHostMsg_HandleInputEvent_ACK::ID:
37 case ViewHostMsg_HasTouchEventHandlers::ID: 37 case ViewHostMsg_HasTouchEventHandlers::ID:
38 case ViewHostMsg_SetCursor::ID: 38 case ViewHostMsg_SetCursor::ID:
39 #if defined(OS_MACOSX) 39 #if defined(OS_MACOSX)
40 case ViewHostMsg_ShowPopup::ID: 40 case ViewHostMsg_ShowPopup::ID:
41 #endif 41 #endif
42 case ViewHostMsg_ShowWidget::ID: 42 case ViewHostMsg_ShowWidget::ID:
43 case ViewHostMsg_TakeFocus::ID: 43 case ViewHostMsg_TakeFocus::ID:
44 case ViewHostMsg_UpdateFrameName::ID:
44 case ViewHostMsg_UpdateRect::ID: 45 case ViewHostMsg_UpdateRect::ID:
45 return true; 46 return true;
46 default: 47 default:
47 break; 48 break;
48 } 49 }
49 return false; 50 return false;
50 } 51 }
51 52
52 } // namespace content 53 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698