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

Side by Side Diff: content/common/service_worker/service_worker_messages.h

Issue 1071203002: Consistently handle persistent notification ids as int64_t (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@n-db-Integrate
Patch Set: rebase Created 5 years, 8 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 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 int /* request_id */) 377 int /* request_id */)
378 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent, 378 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ActivateEvent,
379 int /* request_id */) 379 int /* request_id */)
380 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent, 380 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FetchEvent,
381 int /* request_id */, 381 int /* request_id */,
382 content::ServiceWorkerFetchRequest) 382 content::ServiceWorkerFetchRequest)
383 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent, 383 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_SyncEvent,
384 int /* request_id */) 384 int /* request_id */)
385 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent, 385 IPC_MESSAGE_CONTROL3(ServiceWorkerMsg_NotificationClickEvent,
386 int /* request_id */, 386 int /* request_id */,
387 std::string /* notification_id */, 387 int64_t /* persistent_notification_id */,
388 content::PlatformNotificationData /* notification_data */) 388 content::PlatformNotificationData /* notification_data */)
389 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent, 389 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_PushEvent,
390 int /* request_id */, 390 int /* request_id */,
391 std::string /* data */) 391 std::string /* data */)
392 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent, 392 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_GeofencingEvent,
393 int /* request_id */, 393 int /* request_id */,
394 blink::WebGeofencingEventType /* event_type */, 394 blink::WebGeofencingEventType /* event_type */,
395 std::string /* region_id */, 395 std::string /* region_id */,
396 blink::WebCircularGeofencingRegion /* region */) 396 blink::WebCircularGeofencingRegion /* region */)
397 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CrossOriginConnectEvent, 397 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CrossOriginConnectEvent,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 432
433 // Sent via EmbeddedWorker as an error response of OpenWindow. 433 // Sent via EmbeddedWorker as an error response of OpenWindow.
434 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_OpenWindowError, 434 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_OpenWindowError,
435 int /* request_id */, 435 int /* request_id */,
436 std::string /* message */ ) 436 std::string /* message */ )
437 437
438 // Sent via EmbeddedWorker as a response of FocusClient. 438 // Sent via EmbeddedWorker as a response of FocusClient.
439 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse, 439 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_FocusClientResponse,
440 int /* request_id */, 440 int /* request_id */,
441 content::ServiceWorkerClientInfo /* client */) 441 content::ServiceWorkerClientInfo /* client */)
OLDNEW
« no previous file with comments | « content/common/platform_notification_messages.h ('k') | content/renderer/service_worker/service_worker_script_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698