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

Unified Diff: components/signin/core/webdata/token_web_data.h

Issue 129253003: Revert of Create signin component and componentize TokenWebData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/signin/core/webdata/token_web_data.h
diff --git a/components/signin/core/webdata/token_web_data.h b/components/signin/core/webdata/token_web_data.h
deleted file mode 100644
index aaafdc0fc25abf789c9caa88b58774dd8bfaa5a8..0000000000000000000000000000000000000000
--- a/components/signin/core/webdata/token_web_data.h
+++ /dev/null
@@ -1,70 +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.
-
-// Chromium settings and storage represent user-selected preferences and
-// information and MUST not be extracted, overwritten or modified except
-// through Chromium defined APIs.
-
-#ifndef COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_WEB_DATA_H__
-#define COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_WEB_DATA_H__
-
-#include <map>
-#include <string>
-#include <vector>
-
-#include "base/callback_forward.h"
-#include "base/files/file_path.h"
-#include "base/location.h"
-#include "base/memory/ref_counted.h"
-#include "components/webdata/common/web_data_results.h"
-#include "components/webdata/common/web_data_service_base.h"
-#include "components/webdata/common/web_data_service_consumer.h"
-#include "components/webdata/common/web_database.h"
-
-namespace base {
-class MessageLoopProxy;
-}
-
-class TokenWebDataBackend;
-class WebDatabaseService;
-class WebDataServiceConsumer;
-
-// TokenWebData is a data repository for storage of authentication tokens.
-
-class TokenWebData : public WebDataServiceBase {
- public:
- TokenWebData(scoped_refptr<WebDatabaseService> wdbs,
- scoped_refptr<base::MessageLoopProxy> ui_thread,
- scoped_refptr<base::MessageLoopProxy> db_thread,
- const ProfileErrorCallback& callback);
-
- TokenWebData(scoped_refptr<base::MessageLoopProxy> ui_thread,
- scoped_refptr<base::MessageLoopProxy> db_thread);
-
- // Set a token to use for a specified service.
- void SetTokenForService(const std::string& service,
- const std::string& token);
-
- // Remove all tokens stored in the web database.
- void RemoveAllTokens();
-
- // Removes a token related to |service| from the web database.
- void RemoveTokenForService(const std::string& service);
-
- // Null on failure. Success is WDResult<std::vector<std::string> >
- virtual Handle GetAllTokens(WebDataServiceConsumer* consumer);
-
- protected:
- // For unit tests, passes a null callback.
- TokenWebData();
-
- virtual ~TokenWebData();
-
- private:
- scoped_refptr<TokenWebDataBackend> token_backend_;
-
- DISALLOW_COPY_AND_ASSIGN(TokenWebData);
-};
-
-#endif // COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_WEB_DATA_H__
« no previous file with comments | « components/signin/core/webdata/token_service_table_unittest.cc ('k') | components/signin/core/webdata/token_web_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698