| Index: components/webdata/common/web_data_results.h
|
| diff --git a/components/webdata/common/web_data_results.h b/components/webdata/common/web_data_results.h
|
| index 6d454335ce8b5927754b33c2d999a33af23be42e..46d15ceab4408ee5d4253f09cfb48b2db0c6e4a9 100644
|
| --- a/components/webdata/common/web_data_results.h
|
| +++ b/components/webdata/common/web_data_results.h
|
| @@ -114,20 +114,4 @@ template <class T> class WDDestroyableResult : public WDTypedResult {
|
| DISALLOW_COPY_AND_ASSIGN(WDDestroyableResult);
|
| };
|
|
|
| -template <class T> class WDObjectResult : public WDTypedResult {
|
| - public:
|
| - explicit WDObjectResult(WDResultType type)
|
| - : WDTypedResult(type) {
|
| - }
|
| -
|
| - T* GetValue() const {
|
| - return &value_;
|
| - }
|
| -
|
| - private:
|
| - // mutable to keep GetValue() const.
|
| - mutable T value_;
|
| - DISALLOW_COPY_AND_ASSIGN(WDObjectResult);
|
| -};
|
| -
|
| #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATA_RESULTS_H_
|
|
|