Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: chrome/browser/push_messaging/push_messaging_service_impl.h

Issue 1771743002: Move geolocation and permission mojoms into WebKit/public/platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_ 5 #ifndef CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_
6 #define CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_ 6 #define CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "chrome/browser/background/background_trigger.h" 18 #include "chrome/browser/background/background_trigger.h"
19 #include "components/content_settings/core/browser/content_settings_observer.h" 19 #include "components/content_settings/core/browser/content_settings_observer.h"
20 #include "components/content_settings/core/common/content_settings.h" 20 #include "components/content_settings/core/common/content_settings.h"
21 #include "components/gcm_driver/common/gcm_messages.h" 21 #include "components/gcm_driver/common/gcm_messages.h"
22 #include "components/gcm_driver/gcm_app_handler.h" 22 #include "components/gcm_driver/gcm_app_handler.h"
23 #include "components/gcm_driver/gcm_client.h" 23 #include "components/gcm_driver/gcm_client.h"
24 #include "components/keyed_service/core/keyed_service.h" 24 #include "components/keyed_service/core/keyed_service.h"
25 #include "content/public/browser/push_messaging_service.h" 25 #include "content/public/browser/push_messaging_service.h"
26 #include "content/public/common/permission_status.mojom.h"
27 #include "content/public/common/push_event_payload.h" 26 #include "content/public/common/push_event_payload.h"
28 #include "content/public/common/push_messaging_status.h" 27 #include "content/public/common/push_messaging_status.h"
28 #include "third_party/WebKit/public/platform/modules/permissions/permission_stat us.mojom.h"
29 #include "third_party/WebKit/public/platform/modules/push_messaging/WebPushPermi ssionStatus.h" 29 #include "third_party/WebKit/public/platform/modules/push_messaging/WebPushPermi ssionStatus.h"
30 30
31 #if defined(ENABLE_NOTIFICATIONS) 31 #if defined(ENABLE_NOTIFICATIONS)
32 #include "chrome/browser/push_messaging/push_messaging_notification_manager.h" 32 #include "chrome/browser/push_messaging/push_messaging_notification_manager.h"
33 #endif 33 #endif
34 34
35 class Profile; 35 class Profile;
36 class PushMessagingAppIdentifier; 36 class PushMessagingAppIdentifier;
37 class PushMessagingServiceObserver; 37 class PushMessagingServiceObserver;
38 38
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 const PushMessagingAppIdentifier& app_identifier, 160 const PushMessagingAppIdentifier& app_identifier,
161 const content::PushMessagingService::RegisterCallback& callback, 161 const content::PushMessagingService::RegisterCallback& callback,
162 const std::string& subscription_id, 162 const std::string& subscription_id,
163 const std::string& p256dh, 163 const std::string& p256dh,
164 const std::string& auth_secret); 164 const std::string& auth_secret);
165 165
166 void DidRequestPermission( 166 void DidRequestPermission(
167 const PushMessagingAppIdentifier& app_identifier, 167 const PushMessagingAppIdentifier& app_identifier,
168 const std::string& sender_id, 168 const std::string& sender_id,
169 const content::PushMessagingService::RegisterCallback& callback, 169 const content::PushMessagingService::RegisterCallback& callback,
170 content::PermissionStatus permission_status); 170 blink::mojom::PermissionStatus permission_status);
171 171
172 // GetEncryptionInfo method -------------------------------------------------- 172 // GetEncryptionInfo method --------------------------------------------------
173 173
174 void DidGetEncryptionInfo( 174 void DidGetEncryptionInfo(
175 const PushMessagingService::EncryptionInfoCallback& callback, 175 const PushMessagingService::EncryptionInfoCallback& callback,
176 const std::string& p256dh, 176 const std::string& p256dh,
177 const std::string& auth_secret) const; 177 const std::string& auth_secret) const;
178 178
179 // Unsubscribe methods ------------------------------------------------------- 179 // Unsubscribe methods -------------------------------------------------------
180 180
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 MessageDispatchedCallback message_dispatched_callback_for_testing_; 236 MessageDispatchedCallback message_dispatched_callback_for_testing_;
237 237
238 scoped_ptr<PushMessagingServiceObserver> push_messaging_service_observer_; 238 scoped_ptr<PushMessagingServiceObserver> push_messaging_service_observer_;
239 239
240 base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_; 240 base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_;
241 241
242 DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl); 242 DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl);
243 }; 243 };
244 244
245 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_ 245 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698