| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_WEBDATA_TOKEN_SERVICE_TABLE_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_SERVICE_TABLE_H_ |
| 6 #define CHROME_BROWSER_WEBDATA_TOKEN_SERVICE_TABLE_H_ | 6 #define COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_SERVICE_TABLE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "components/webdata/common/web_database_table.h" | 12 #include "components/webdata/common/web_database_table.h" |
| 13 | 13 |
| 14 class WebDatabase; | 14 class WebDatabase; |
| 15 | 15 |
| 16 class TokenServiceTable : public WebDatabaseTable { | 16 class TokenServiceTable : public WebDatabaseTable { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 // Store a token in the token_service table. Stored encrypted. May cause | 41 // Store a token in the token_service table. Stored encrypted. May cause |
| 42 // a mac keychain popup. | 42 // a mac keychain popup. |
| 43 // True if we encrypted a token and stored it, false otherwise. | 43 // True if we encrypted a token and stored it, false otherwise. |
| 44 bool SetTokenForService(const std::string& service, | 44 bool SetTokenForService(const std::string& service, |
| 45 const std::string& token); | 45 const std::string& token); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 DISALLOW_COPY_AND_ASSIGN(TokenServiceTable); | 48 DISALLOW_COPY_AND_ASSIGN(TokenServiceTable); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #endif // CHROME_BROWSER_WEBDATA_TOKEN_SERVICE_TABLE_H_ | 51 #endif // COMPONENTS_SIGNIN_CORE_WEBDATA_TOKEN_SERVICE_TABLE_H_ |
| OLD | NEW |