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

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

Issue 23615009: Stub out initial NavigationController browser implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Message definition file, included multiple times, hence no include guard.
6
7 #include "base/strings/string16.h"
8 #include "ipc/ipc_message_macros.h"
9 #include "ipc/ipc_param_traits.h"
10 #include "url/gurl.h"
11
12 #define IPC_MESSAGE_START ServiceWorkerMsgStart
13
14 // Messages sent from the child process to the browser.
15
16 IPC_MESSAGE_CONTROL3(ServiceWorkerHostMsg_RegisterServiceWorker,
17 int32 /* callback_id */,
18 string16 /* scope */,
19 GURL /* script_url */)
20
21 IPC_MESSAGE_CONTROL2(ServiceWorkerHostMsg_UnregisterServiceWorker,
22 int32 /* callback_id */,
23 string16 /* scope (url pattern) */)
24
25 // Messages sent from the browser to the child process.
26
27 // Response to ServiceWorkerMsg_RegisterServiceWorker
28 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ServiceWorkerRegistered,
29 int32 /* callback_id */)
30
31 // Response to ServiceWorkerMsg_UnregisterServiceWorker
32 IPC_MESSAGE_CONTROL1(ServiceWorkerMsg_ServiceWorkerUnregistered,
33 int32 /* callback_id */)
OLDNEW
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698