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

Unified Diff: chrome/test/automation/automation_messages_internal.h

Issue 209029: Fix order of parameters for AutomationProvider::GetBooleanPreference(). (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_messages_internal.h
===================================================================
--- chrome/test/automation/automation_messages_internal.h (revision 27032)
+++ chrome/test/automation/automation_messages_internal.h (working copy)
@@ -822,14 +822,14 @@
int /* browser handle */,
std::wstring /* pref name */,
std::wstring /* pref value */,
- bool)
+ bool /* success */)
// This messages gets a boolean-value preference.
IPC_SYNC_MESSAGE_ROUTED2_2(AutomationMsg_GetBooleanPreference,
int /* browser handle */,
std::wstring /* pref name */,
- bool /* success */,
- bool /* pref value */)
+ bool /* pref value */,
+ bool /* success */)
// This messages sets a boolean-value preference.
IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_SetBooleanPreference,
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698