| Index: chrome/browser/extensions/app_notification.cc
|
| diff --git a/chrome/browser/extensions/app_notification.cc b/chrome/browser/extensions/app_notification.cc
|
| index fe0d1a09e25fac3d6515a3599a5ee0b4f2b0284c..f89353e23b6ea251bd3355e3f63fb5c9984c53db 100644
|
| --- a/chrome/browser/extensions/app_notification.cc
|
| +++ b/chrome/browser/extensions/app_notification.cc
|
| @@ -4,10 +4,10 @@
|
|
|
| #include "chrome/browser/extensions/app_notification.h"
|
|
|
| +#include "base/guid.h"
|
| #include "base/json/json_writer.h"
|
| #include "base/string_number_conversions.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "chrome/common/guid.h"
|
|
|
| namespace {
|
|
|
| @@ -33,7 +33,7 @@ AppNotification::AppNotification(bool is_local,
|
| extension_id_(extension_id),
|
| title_(title),
|
| body_(body) {
|
| - guid_ = guid.empty() ? guid::GenerateGUID() : guid;
|
| + guid_ = guid.empty() ? base::GenerateGUID() : guid;
|
| }
|
|
|
| AppNotification::~AppNotification() {}
|
|
|