| Index: content/public/common/manifest.cc
|
| diff --git a/content/public/common/manifest.cc b/content/public/common/manifest.cc
|
| index f1dd57ece376c0f7c5a3fa1edcfa7944ba9731ac..d9fa2b26f25e4ea9780e6ce5e2fe2786a6d3f402 100644
|
| --- a/content/public/common/manifest.cc
|
| +++ b/content/public/common/manifest.cc
|
| @@ -8,14 +8,18 @@ namespace content {
|
|
|
| const size_t Manifest::kMaxIPCStringLength = 4 * 1024;
|
|
|
| -Manifest::Manifest() {
|
| +Manifest::Manifest()
|
| + : display(DISPLAY_MODE_UNSPECIFIED) {
|
| }
|
|
|
| Manifest::~Manifest() {
|
| }
|
|
|
| bool Manifest::IsEmpty() const {
|
| - return name.is_null() && short_name.is_null();
|
| + return name.is_null() &&
|
| + short_name.is_null() &&
|
| + start_url.is_empty() &&
|
| + display == DISPLAY_MODE_UNSPECIFIED;
|
| }
|
|
|
| } // namespace content
|
|
|