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

Unified Diff: chrome/browser/automation/automation_provider.cc

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
Index: chrome/browser/automation/automation_provider.cc
===================================================================
--- chrome/browser/automation/automation_provider.cc (revision 27032)
+++ chrome/browser/automation/automation_provider.cc (working copy)
@@ -1802,8 +1802,8 @@
void AutomationProvider::GetBooleanPreference(int handle,
const std::wstring& name,
- bool* success,
- bool* value) {
+ bool* value,
+ bool* success) {
*success = false;
*value = false;
if (browser_tracker_->ContainsHandle(handle)) {
« no previous file with comments | « chrome/browser/automation/automation_provider.h ('k') | chrome/test/automation/automation_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698