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

Side by Side Diff: mojo/public/cpp/bindings/strong_associated_binding_set.h

Issue 2727733004: [IndexedDB] Closing mojo connections when renderer quits (Closed)
Patch Set: comments, still figuring out how to test Created 3 years, 9 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
(Empty)
1 // Copyright 2017 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 #ifndef MOJO_PUBLIC_CPP_BINDINGS_STRONG_ASSOCIATED_BINDING_SET_H_
6 #define MOJO_PUBLIC_CPP_BINDINGS_STRONG_ASSOCIATED_BINDING_SET_H_
7
8 #include "mojo/public/cpp/bindings/associated_binding.h"
9 #include "mojo/public/cpp/bindings/associated_binding_set.h"
10 #include "mojo/public/cpp/bindings/associated_interface_ptr.h"
11 #include "mojo/public/cpp/bindings/associated_interface_request.h"
12 #include "mojo/public/cpp/bindings/binding_set.h"
13 #include "mojo/public/cpp/bindings/unique_ptr_impl_ref_traits.h"
14
15 namespace mojo {
16
17 template <typename Interface, typename ContextType = void>
18 using StrongAssociatedBindingSet = BindingSetBase<
19 Interface, AssociatedBinding<Interface, UniquePtrImplRefTraits<Interface>>,
cmumford 2017/03/07 20:24:23 Nit: clang-format wants param #2 on own line.
dmurph 2017/03/09 20:44:15 Done.
20 ContextType>;
21
22 } // namespace mojo
23
24 #endif // MOJO_PUBLIC_CPP_BINDINGS_STRONG_ASSOCIATED_BINDING_SET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698