| Index: chrome/browser/chromeos/login/ownership_status_checker.h
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/ownership_status_checker.h (revision 99240)
|
| +++ chrome/browser/chromeos/login/ownership_status_checker.h (working copy)
|
| @@ -23,9 +23,8 @@
|
| class OwnershipStatusChecker {
|
| public:
|
| // Callback function type. The status code is guaranteed to be different from
|
| - // OWNERSHIP_UNKNOWN. The bool parameter is true iff the current logged in
|
| - // user is the owner.
|
| - typedef Callback2<OwnershipService::Status, bool>::Type Callback;
|
| + // OWNERSHIP_UNKNOWN.
|
| + typedef Callback1<OwnershipService::Status>::Type Callback;
|
|
|
| explicit OwnershipStatusChecker(Callback* callback);
|
| ~OwnershipStatusChecker();
|
| @@ -45,8 +44,7 @@
|
|
|
| private:
|
| void CheckOnFileThread();
|
| - void ReportResult(OwnershipService::Status status,
|
| - bool current_user_is_owner);
|
| + void ReportResult(OwnershipService::Status status);
|
|
|
| scoped_ptr<Callback> callback_;
|
| scoped_refptr<base::MessageLoopProxy> origin_loop_;
|
|
|