OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 5 #ifndef CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
6 #define CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 6 #define CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
7 | 7 |
8 // This file provides declarations and stub definitions for classes we encouter | 8 // This file provides declarations and stub definitions for classes we encouter |
9 // during the porting effort. It is not meant to be permanent, and classes will | 9 // during the porting effort. It is not meant to be permanent, and classes will |
10 // be removed from here as they are fleshed out more completely. | 10 // be removed from here as they are fleshed out more completely. |
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
950 | 950 |
951 class FavIconHelper { | 951 class FavIconHelper { |
952 public: | 952 public: |
953 FavIconHelper(WebContents*) { } | 953 FavIconHelper(WebContents*) { } |
954 void SetFavIconURL(const GURL&) { NOTIMPLEMENTED(); } | 954 void SetFavIconURL(const GURL&) { NOTIMPLEMENTED(); } |
955 void SetFavIcon(int, const GURL&, const SkBitmap&) { NOTIMPLEMENTED(); } | 955 void SetFavIcon(int, const GURL&, const SkBitmap&) { NOTIMPLEMENTED(); } |
956 void FavIconDownloadFailed(int) { NOTIMPLEMENTED(); } | 956 void FavIconDownloadFailed(int) { NOTIMPLEMENTED(); } |
957 void FetchFavIcon(const GURL&) { NOTIMPLEMENTED(); } | 957 void FetchFavIcon(const GURL&) { NOTIMPLEMENTED(); } |
958 }; | 958 }; |
959 | 959 |
960 class AutofillManager { | |
961 public: | |
962 AutofillManager(WebContents*) { } | |
963 void AutofillFormSubmitted(const AutofillForm&) { NOTIMPLEMENTED(); } | |
964 void FetchValuesForName(const std::wstring&, const std::wstring&, int, | |
965 int64, int) { NOTIMPLEMENTED(); } | |
966 }; | |
967 | |
968 class PasswordManager { | 960 class PasswordManager { |
969 public: | 961 public: |
970 PasswordManager(WebContents*) { } | 962 PasswordManager(WebContents*) { } |
971 void ClearProvisionalSave() { NOTIMPLEMENTED(); } | 963 void ClearProvisionalSave() { NOTIMPLEMENTED(); } |
972 void DidStopLoading() { NOTIMPLEMENTED(); } | 964 void DidStopLoading() { NOTIMPLEMENTED(); } |
973 void PasswordFormsSeen(const std::vector<PasswordForm>&) { NOTIMPLEMENTED(); } | 965 void PasswordFormsSeen(const std::vector<PasswordForm>&) { NOTIMPLEMENTED(); } |
974 void DidNavigate() { NOTIMPLEMENTED(); } | 966 void DidNavigate() { NOTIMPLEMENTED(); } |
975 void ProvisionallySavePassword(PasswordForm form) { NOTIMPLEMENTED(); } | 967 void ProvisionallySavePassword(PasswordForm form) { NOTIMPLEMENTED(); } |
976 }; | 968 }; |
977 | 969 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1015 return L""; | 1007 return L""; |
1016 } | 1008 } |
1017 }; | 1009 }; |
1018 | 1010 |
1019 class SimpleAlertInfoBarDelegate : public InfoBarDelegate { | 1011 class SimpleAlertInfoBarDelegate : public InfoBarDelegate { |
1020 public: | 1012 public: |
1021 SimpleAlertInfoBarDelegate(WebContents*, const std::wstring&, void*) {} | 1013 SimpleAlertInfoBarDelegate(WebContents*, const std::wstring&, void*) {} |
1022 }; | 1014 }; |
1023 | 1015 |
1024 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ | 1016 #endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_ |
OLD | NEW |