| Index: content/browser/notifications/notification_database_data_unittest.cc
|
| diff --git a/content/browser/notifications/notification_database_data_unittest.cc b/content/browser/notifications/notification_database_data_unittest.cc
|
| index bf93b3547eeab8db148eec9b9ab7dca781214871..8c8e7dd77794be6c49596e48499100bc0580cdfd 100644
|
| --- a/content/browser/notifications/notification_database_data_unittest.cc
|
| +++ b/content/browser/notifications/notification_database_data_unittest.cc
|
| @@ -12,10 +12,10 @@
|
| #include "base/time/time.h"
|
| #include "content/browser/notifications/notification_database_data.pb.h"
|
| #include "content/browser/notifications/notification_database_data_conversions.h"
|
| -#include "content/common/notification_constants.h"
|
| #include "content/public/browser/notification_database_data.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "third_party/WebKit/public/platform/modules/notifications/WebNotificationConstants.h"
|
|
|
| namespace content {
|
|
|
| @@ -59,7 +59,7 @@ TEST(NotificationDatabaseDataTest, SerializeAndDeserializeData) {
|
| notification_data.silent = true;
|
| notification_data.require_interaction = true;
|
| notification_data.data = developer_data;
|
| - for (size_t i = 0; i < kPlatformNotificationMaxActions; i++) {
|
| + for (size_t i = 0; i < blink::kWebNotificationMaxActions; i++) {
|
| PlatformNotificationAction notification_action;
|
| notification_action.type = kNotificationActionType;
|
| notification_action.action = base::SizeTToString(i);
|
|
|