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

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

Issue 1343004: 3rd try. *sigh*... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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) 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...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/test/automation/automation_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698