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

Side by Side Diff: chrome/browser/automation/testing_automation_provider.h

Issue 7523063: Add a hook for capturing a user profile photo and saving it to file and local state. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased Created 9 years, 4 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) 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 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1236
1237 void SetReleaseTrack(base::DictionaryValue* args, 1237 void SetReleaseTrack(base::DictionaryValue* args,
1238 IPC::Message* reply_message); 1238 IPC::Message* reply_message);
1239 1239
1240 // Volume. 1240 // Volume.
1241 void GetVolumeInfo(base::DictionaryValue* args, IPC::Message* reply_message); 1241 void GetVolumeInfo(base::DictionaryValue* args, IPC::Message* reply_message);
1242 1242
1243 void SetVolume(base::DictionaryValue* args, IPC::Message* reply_message); 1243 void SetVolume(base::DictionaryValue* args, IPC::Message* reply_message);
1244 1244
1245 void SetMute(base::DictionaryValue* args, IPC::Message* reply_message); 1245 void SetMute(base::DictionaryValue* args, IPC::Message* reply_message);
1246
1247 void CaptureProfilePhoto(Browser* browser,
1248 DictionaryValue* args,
1249 IPC::Message* reply_message);
1246 #endif // defined(OS_CHROMEOS) 1250 #endif // defined(OS_CHROMEOS)
1247 1251
1248 void WaitForTabCountToBecome(int browser_handle, 1252 void WaitForTabCountToBecome(int browser_handle,
1249 int target_tab_count, 1253 int target_tab_count,
1250 IPC::Message* reply_message); 1254 IPC::Message* reply_message);
1251 1255
1252 void WaitForInfoBarCount(int tab_handle, 1256 void WaitForInfoBarCount(int tab_handle,
1253 size_t target_count, 1257 size_t target_count,
1254 IPC::Message* reply_message); 1258 IPC::Message* reply_message);
1255 1259
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1308 // Used to enumerate browser profiles. 1312 // Used to enumerate browser profiles.
1309 scoped_refptr<ImporterList> importer_list_; 1313 scoped_refptr<ImporterList> importer_list_;
1310 1314
1311 // The stored data for the ImportSettings operation. 1315 // The stored data for the ImportSettings operation.
1312 ImportSettingsData import_settings_data_; 1316 ImportSettingsData import_settings_data_;
1313 1317
1314 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); 1318 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider);
1315 }; 1319 };
1316 1320
1317 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ 1321 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698