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

Side by Side Diff: content/public/common/url_handling_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: Code review comments + lint errors 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
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_message_start.h"
14
15 #undef IPC_MESSAGE_EXPORT
16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
17
18 #define IPC_MESSAGE_START UrlHandlingMsgStart
19
20 // Tells the renderer host to forward the specified URL and referrer to the
21 // browser for further handling.
22 IPC_MESSAGE_CONTROL2(RendererHostMsg_ForwardUrlToBrowser,
23 GURL /* URL to redirect */,
24 GURL /* referrer URL */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698