| Index: webkit/browser/dom_storage/dom_storage_host.cc
|
| diff --git a/webkit/browser/dom_storage/dom_storage_host.cc b/webkit/browser/dom_storage/dom_storage_host.cc
|
| index 95d4d762cbecdcf3a7a213317699f0234f9a036c..be6205d56b2700ddee4e9cd6a98cecb334220818 100644
|
| --- a/webkit/browser/dom_storage/dom_storage_host.cc
|
| +++ b/webkit/browser/dom_storage/dom_storage_host.cc
|
| @@ -84,7 +84,7 @@ base::NullableString16 DomStorageHost::GetAreaKey(int connection_id,
|
| unsigned index) {
|
| DomStorageArea* area = GetOpenArea(connection_id);
|
| if (!area)
|
| - return base::NullableString16(true);
|
| + return base::NullableString16();
|
| return area->Key(index);
|
| }
|
|
|
| @@ -92,7 +92,7 @@ base::NullableString16 DomStorageHost::GetAreaItem(int connection_id,
|
| const base::string16& key) {
|
| DomStorageArea* area = GetOpenArea(connection_id);
|
| if (!area)
|
| - return base::NullableString16(true);
|
| + return base::NullableString16();
|
| return area->GetItem(key);
|
| }
|
|
|
|
|