| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 void UpdateCheck(base::DictionaryValue* args, IPC::Message* reply_message); | 1220 void UpdateCheck(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1221 | 1221 |
| 1222 void SetReleaseTrack(base::DictionaryValue* args, | 1222 void SetReleaseTrack(base::DictionaryValue* args, |
| 1223 IPC::Message* reply_message); | 1223 IPC::Message* reply_message); |
| 1224 | 1224 |
| 1225 void GetVolumeInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1225 void GetVolumeInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1226 | 1226 |
| 1227 void SetVolume(base::DictionaryValue* args, IPC::Message* reply_message); | 1227 void SetVolume(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1228 | 1228 |
| 1229 void SetMute(base::DictionaryValue* args, IPC::Message* reply_message); | 1229 void SetMute(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1230 |
| 1231 void CaptureProfilePhoto(Browser* browser, |
| 1232 DictionaryValue* args, |
| 1233 IPC::Message* reply_message); |
| 1230 #endif // defined(OS_CHROMEOS) | 1234 #endif // defined(OS_CHROMEOS) |
| 1231 | 1235 |
| 1232 void WaitForTabCountToBecome(int browser_handle, | 1236 void WaitForTabCountToBecome(int browser_handle, |
| 1233 int target_tab_count, | 1237 int target_tab_count, |
| 1234 IPC::Message* reply_message); | 1238 IPC::Message* reply_message); |
| 1235 | 1239 |
| 1236 void WaitForInfoBarCount(int tab_handle, | 1240 void WaitForInfoBarCount(int tab_handle, |
| 1237 size_t target_count, | 1241 size_t target_count, |
| 1238 IPC::Message* reply_message); | 1242 IPC::Message* reply_message); |
| 1239 | 1243 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 // Used to enumerate browser profiles. | 1296 // Used to enumerate browser profiles. |
| 1293 scoped_refptr<ImporterList> importer_list_; | 1297 scoped_refptr<ImporterList> importer_list_; |
| 1294 | 1298 |
| 1295 // The stored data for the ImportSettings operation. | 1299 // The stored data for the ImportSettings operation. |
| 1296 ImportSettingsData import_settings_data_; | 1300 ImportSettingsData import_settings_data_; |
| 1297 | 1301 |
| 1298 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1302 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1299 }; | 1303 }; |
| 1300 | 1304 |
| 1301 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1305 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |