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

Unified Diff: chrome/browser/webdata/token_web_data.h

Issue 15734014: Split token-related methods from WebDataService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/webdata/token_web_data.h
diff --git a/chrome/browser/webdata/token_web_data.h b/chrome/browser/webdata/token_web_data.h
new file mode 100644
index 0000000000000000000000000000000000000000..3d97da9f839acdd09c8e229c47b635f95a9eb230
--- /dev/null
+++ b/chrome/browser/webdata/token_web_data.h
@@ -0,0 +1,64 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
Jói 2013/05/23 17:58:08 2013, no (c)
Cait (Slow) 2013/05/24 16:17:08 Done.
+// 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 CHROME_BROWSER_WEBDATA_TOKEN_WEB_DATA_H__
+#define CHROME_BROWSER_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"
+
+class TokenWebDataBackend;
+class WebDatabaseService;
+class WebDataServiceConsumer;
+
+namespace content {
+class BrowserContext;
+}
+
+class TokenWebData : public WebDataServiceBase {
Jói 2013/05/23 17:58:08 Maybe one line of documentation? e.g. "Storage for
Cait (Slow) 2013/05/24 16:17:08 Done.
+ public:
+ // Retrieve a WebDataService for the given context.
+ static scoped_refptr<TokenWebData> FromBrowserContext(
+ content::BrowserContext* context);
+
+ TokenWebData(scoped_refptr<WebDatabaseService> wdbs,
+ const ProfileErrorCallback& callback);
+
+ // 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();
+
+ // 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 // CHROME_BROWSER_WEBDATA_TOKEN_WEB_DATA_H__

Powered by Google App Engine
This is Rietveld 408576698