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

Unified Diff: components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h

Issue 1288093004: rAc Wallet extirpation round 4: clean out RPC code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn Created 5 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h
diff --git a/components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h b/components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h
deleted file mode 100644
index 28508a3662ebc38d27576df0e323ae6e26011c37..0000000000000000000000000000000000000000
--- a/components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_AUTOFILL_WALLET_SIGNIN_HELPER_DELEGATE_H_
-#define CHROME_BROWSER_UI_AUTOFILL_WALLET_SIGNIN_HELPER_DELEGATE_H_
-
-#include <string>
-#include <vector>
-
-class GoogleServiceAuthError;
-
-namespace autofill {
-namespace wallet {
-
-// An interface that defines the callbacks for objects that
-// WalletSigninHelper can return data to.
-class WalletSigninHelperDelegate {
- public:
- virtual ~WalletSigninHelperDelegate() {}
-
- // Called on a successful passive sign-in.
- virtual void OnPassiveSigninSuccess() = 0;
-
- // Called on a failed passive sign-in; |error| describes the error.
- virtual void OnPassiveSigninFailure(const GoogleServiceAuthError& error) = 0;
-
- // Called when the Google Wallet cookie value has been retrieved.
- virtual void OnDidFetchWalletCookieValue(const std::string& cookie_value) = 0;
-};
-
-} // namespace wallet
-} // namespace autofill
-
-#endif // CHROME_BROWSER_UI_AUTOFILL_WALLET_SIGNIN_HELPER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698