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

Side by Side Diff: chrome/browser/automation/chrome_frame_automation_provider.cc

Issue 3014001: ChromeFrame tabs would hang at times while closing. This would randomly occur... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/automation/chrome_frame_automation_provider.h" 5 #include "chrome/browser/automation/chrome_frame_automation_provider.h"
6 #include "chrome/browser/profile.h" 6 #include "chrome/browser/profile.h"
7 #include "chrome/browser/profile_manager.h" 7 #include "chrome/browser/profile_manager.h"
8 #include "chrome/test/automation/automation_messages.h" 8 #include "chrome/test/automation/automation_messages.h"
9 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 #include "ipc/ipc_channel.h" 10 #include "ipc/ipc_channel.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 case AutomationMsg_ReloadAsync::ID: 57 case AutomationMsg_ReloadAsync::ID:
58 case AutomationMsg_StopAsync::ID: 58 case AutomationMsg_StopAsync::ID:
59 case AutomationMsg_PrintAsync::ID: 59 case AutomationMsg_PrintAsync::ID:
60 case AutomationMsg_HandleUnused::ID: 60 case AutomationMsg_HandleUnused::ID:
61 case AutomationMsg_HandleMessageFromExternalHost::ID: 61 case AutomationMsg_HandleMessageFromExternalHost::ID:
62 case AutomationMsg_RequestStarted::ID: 62 case AutomationMsg_RequestStarted::ID:
63 case AutomationMsg_RequestData::ID: 63 case AutomationMsg_RequestData::ID:
64 case AutomationMsg_RequestEnd::ID: 64 case AutomationMsg_RequestEnd::ID:
65 case AutomationMsg_SaveAsAsync::ID: 65 case AutomationMsg_SaveAsAsync::ID:
66 case AutomationMsg_RemoveBrowsingData::ID: 66 case AutomationMsg_RemoveBrowsingData::ID:
67 case AutomationMsg_OverrideEncoding::ID: { 67 case AutomationMsg_OverrideEncoding::ID:
68 case AutomationMsg_RunUnloadHandlers::ID: {
68 is_valid_message = true; 69 is_valid_message = true;
69 break; 70 break;
70 } 71 }
71 72
72 default: 73 default:
73 break; 74 break;
74 } 75 }
75 76
76 return is_valid_message; 77 return is_valid_message;
77 } 78 }
78 79
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider_win.cc ('k') | chrome/browser/external_tab_container_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698