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

Side by Side Diff: content/common/associated_interface_provider_impl.h

Issue 2603743002: Simplify content::AssociatedInterfaceProviderImpl (Closed)
Patch Set: Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_
6 #define CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_
7
5 #include "content/public/common/associated_interface_provider.h" 8 #include "content/public/common/associated_interface_provider.h"
6 9
7 #include <stdint.h> 10 #include <stdint.h>
8 #include <memory> 11 #include <memory>
9 12
10 #include "base/macros.h" 13 #include "base/macros.h"
11 #include "content/common/associated_interfaces.mojom.h" 14 #include "content/common/associated_interfaces.mojom.h"
12 15
13 namespace content { 16 namespace content {
14 17
(...skipping 21 matching lines...) Expand all
36 class LocalProvider; 39 class LocalProvider;
37 40
38 mojom::AssociatedInterfaceProviderAssociatedPtr proxy_; 41 mojom::AssociatedInterfaceProviderAssociatedPtr proxy_;
39 42
40 std::unique_ptr<LocalProvider> local_provider_; 43 std::unique_ptr<LocalProvider> local_provider_;
41 44
42 DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceProviderImpl); 45 DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceProviderImpl);
43 }; 46 };
44 47
45 } // namespace content 48 } // namespace content
49
50 #endif // CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698