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

Side by Side Diff: content/public/common/extension_system_messages.h

Issue 22944002: Implementation of the "Redirect URLs to Packaged Apps" feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 1) Fixed broken redirection for in-page WebKit-initiated navigations. All redirections work now. 2)… Created 7 years, 4 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
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 // IPC messages for extension system.
6 // Multiply-included message file, hence no include guard.
7
8 #include <string>
9
10 #include "content/common/content_export.h"
11 #include "googleurl/src/gurl.h"
12 #include "ipc/ipc_message_macros.h"
13 #include "ipc/ipc_platform_file.h"
14
15 #undef IPC_MESSAGE_EXPORT
16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
17
18 #define IPC_MESSAGE_START ExtensionMsgStart
19
20 // Tells the browser process to send to the specified app an onLaunched event
21 // with a URL and its corresponding referrer URL as parameters.
22 IPC_MESSAGE_CONTROL4(ExtensionSystemMsg_LaunchAppWithUrl,
23 std::string /* extension_id */,
24 std::string /* handler_id */,
25 GURL /* URL to redirect */,
26 GURL /* referrer URL */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698