| Index: chrome/common/extensions/event_filtering_info.cc
|
| ===================================================================
|
| --- chrome/common/extensions/event_filtering_info.cc (revision 144007)
|
| +++ chrome/common/extensions/event_filtering_info.cc (working copy)
|
| @@ -31,18 +31,4 @@
|
| return result;
|
| }
|
|
|
| -scoped_ptr<base::Value> EventFilteringInfo::AsValue() const {
|
| - if (IsEmpty())
|
| - return scoped_ptr<base::Value>(base::Value::CreateNullValue());
|
| -
|
| - scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue);
|
| - if (has_url_)
|
| - result->SetString("url", url_.spec());
|
| - return result.PassAs<base::Value>();
|
| -}
|
| -
|
| -bool EventFilteringInfo::IsEmpty() const {
|
| - return !has_url_;
|
| -}
|
| -
|
| } // namespace extensions
|
|
|