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

Side by Side Diff: chrome/common/extensions/extension_messages.h

Issue 7795032: Add link URL and success/failure callback parameters to chrome.webstore.install() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 9 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // IPC messages for extensions. 5 // IPC messages for extensions.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/common/extensions/extension.h" 10 #include "chrome/common/extensions/extension.h"
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 308
309 IPC_MESSAGE_ROUTED2(ExtensionHostMsg_DidGetApplicationInfo, 309 IPC_MESSAGE_ROUTED2(ExtensionHostMsg_DidGetApplicationInfo,
310 int32 /* page_id */, 310 int32 /* page_id */,
311 WebApplicationInfo) 311 WebApplicationInfo)
312 312
313 // Sent by the renderer to implement chrome.app.install(). 313 // Sent by the renderer to implement chrome.app.install().
314 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_InstallApplication, 314 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_InstallApplication,
315 WebApplicationInfo) 315 WebApplicationInfo)
316 316
317 // Sent by the renderer to implement chrome.webstore.install(). 317 // Sent by the renderer to implement chrome.webstore.install().
318 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_InlineWebstoreInstall, 318 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_InlineWebstoreInstall,
319 std::string /* Web Store item ID */) 319 int32 /* install id */,
320 std::string /* Web Store item ID */,
321 GURL /* requestor URL */)
320 322
321 // Send to renderer once the installation mentioned above is complete. 323 // Send to renderer once the installation mentioned above is complete.
322 IPC_MESSAGE_ROUTED2(ExtensionMsg_InlineWebstoreInstallResponse, 324 IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse,
325 int32 /* install id */,
323 bool /* whether the install was successful */, 326 bool /* whether the install was successful */,
324 std::string /* error */) 327 std::string /* error */)
OLDNEW
« no previous file with comments | « chrome/browser/extensions/webstore_inline_installer.cc ('k') | chrome/renderer/extensions/chrome_webstore_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698