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

Side by Side Diff: content/shell/common/shell_messages.h

Issue 1351393002: Make getBluetoothManualChooserEvents() asynchronous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Go back to the callback interface. Created 5 years, 2 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "content/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
10 #include "content/public/common/page_state.h" 10 #include "content/public/common/page_state.h"
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) 105 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult)
106 IPC_STRUCT_TRAITS_MEMBER(leaked) 106 IPC_STRUCT_TRAITS_MEMBER(leaked)
107 IPC_STRUCT_TRAITS_MEMBER(detail) 107 IPC_STRUCT_TRAITS_MEMBER(detail)
108 IPC_STRUCT_TRAITS_END() 108 IPC_STRUCT_TRAITS_END()
109 109
110 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, 110 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone,
111 content::LeakDetectionResult /* result */) 111 content::LeakDetectionResult /* result */)
112 112
113 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, 113 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser,
114 bool /* enable */) 114 bool /* enable */)
115 IPC_SYNC_MESSAGE_ROUTED0_1(ShellViewHostMsg_GetBluetoothManualChooserEvents, 115 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents)
116 std::vector<std::string> /* events */) 116 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents,
117 std::vector<std::string> /* events */)
117 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, 118 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent,
118 std::string /* event */, 119 std::string /* event */,
119 std::string /* argument */) 120 std::string /* argument */)
OLDNEW
« no previous file with comments | « content/shell/browser/blink_test_controller.cc ('k') | content/shell/renderer/layout_test/blink_test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698