| Index: chrome/common/temp_scaffolding_stubs.h
|
| ===================================================================
|
| --- chrome/common/temp_scaffolding_stubs.h (revision 10646)
|
| +++ chrome/common/temp_scaffolding_stubs.h (working copy)
|
| @@ -18,6 +18,7 @@
|
| #include "base/logging.h"
|
| #include "base/message_loop.h"
|
| #include "base/ref_counted.h"
|
| +#include "base/string16.h"
|
| #include "base/gfx/native_widget_types.h"
|
| #include "base/gfx/rect.h"
|
| #include "chrome/browser/bookmarks/bookmark_model.h"
|
| @@ -580,14 +581,14 @@
|
|
|
| class Encryptor {
|
| public:
|
| - static bool EncryptWideString(const std::wstring& plaintext,
|
| - std::string* ciphertext) {
|
| + static bool EncryptString16(const string16& plaintext,
|
| + std::string* ciphertext) {
|
| NOTIMPLEMENTED();
|
| return false;
|
| }
|
|
|
| - static bool DecryptWideString(const std::string& ciphertext,
|
| - std::wstring* plaintext) {
|
| + static bool DecryptString16(const std::string& ciphertext,
|
| + string16* plaintext) {
|
| NOTIMPLEMENTED();
|
| return false;
|
| }
|
|
|