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

Unified Diff: chrome/browser/google_apis/auth_service_interface.h

Issue 96413002: Move c/b/google_apis to google_apis/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years 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/google_apis/auth_service.cc ('k') | chrome/browser/google_apis/auth_service_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/auth_service_interface.h
diff --git a/chrome/browser/google_apis/auth_service_interface.h b/chrome/browser/google_apis/auth_service_interface.h
deleted file mode 100644
index 0f1d1041081b6e6c3f7981f932c0b3773aea12a8..0000000000000000000000000000000000000000
--- a/chrome/browser/google_apis/auth_service_interface.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2012 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_GOOGLE_APIS_AUTH_SERVICE_INTERFACE_H_
-#define CHROME_BROWSER_GOOGLE_APIS_AUTH_SERVICE_INTERFACE_H_
-
-#include <string>
-
-#include "base/callback_forward.h"
-#include "chrome/browser/google_apis/gdata_errorcode.h"
-
-namespace google_apis {
-
-class AuthServiceObserver;
-
-// Called when fetching of access token is complete.
-typedef base::Callback<void(GDataErrorCode error,
- const std::string& access_token)>
- AuthStatusCallback;
-
-// This defines an interface for the authentication service which is required
-// by authenticated requests (AuthenticatedRequestInterface).
-// All functions must be called on UI thread.
-class AuthServiceInterface {
- public:
- virtual ~AuthServiceInterface() {}
-
- // Adds and removes the observer.
- virtual void AddObserver(AuthServiceObserver* observer) = 0;
- virtual void RemoveObserver(AuthServiceObserver* observer) = 0;
-
- // Starts fetching OAuth2 access token from the refresh token.
- // |callback| must not be null.
- virtual void StartAuthentication(const AuthStatusCallback& callback) = 0;
-
- // True if an OAuth2 access token is retrieved and believed to be fresh.
- // The access token is used to access the Drive server.
- virtual bool HasAccessToken() const = 0;
-
- // True if an OAuth2 refresh token is present. Its absence means that user
- // is not properly authenticated.
- // The refresh token is used to get the access token.
- virtual bool HasRefreshToken() const = 0;
-
- // Returns OAuth2 access token.
- virtual const std::string& access_token() const = 0;
-
- // Clears OAuth2 access token.
- virtual void ClearAccessToken() = 0;
-
- // Clears OAuth2 refresh token.
- virtual void ClearRefreshToken() = 0;
-};
-
-} // namespace google_apis
-
-#endif // CHROME_BROWSER_GOOGLE_APIS_AUTH_SERVICE_INTERFACE_H_
« no previous file with comments | « chrome/browser/google_apis/auth_service.cc ('k') | chrome/browser/google_apis/auth_service_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698