OLD | NEW |
1 // Copyright (c) 2009 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" |
11 | 11 |
(...skipping 43 matching lines...) Loading... |
55 case AutomationMsg_Paste::ID: | 55 case AutomationMsg_Paste::ID: |
56 case AutomationMsg_SelectAll::ID: | 56 case AutomationMsg_SelectAll::ID: |
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 is_valid_message = true; | 67 is_valid_message = true; |
67 break; | 68 break; |
68 } | 69 } |
69 | 70 |
70 default: | 71 default: |
71 break; | 72 break; |
72 } | 73 } |
73 | 74 |
74 return is_valid_message; | 75 return is_valid_message; |
75 } | 76 } |
76 | 77 |
OLD | NEW |