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

Unified Diff: mojo/application/public/cpp/lazy_interface_ptr.h

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
Index: mojo/application/public/cpp/lazy_interface_ptr.h
diff --git a/mojo/application/public/cpp/lazy_interface_ptr.h b/mojo/application/public/cpp/lazy_interface_ptr.h
deleted file mode 100644
index 30f406e2346f32aa7126a947de94b896a49e82b3..0000000000000000000000000000000000000000
--- a/mojo/application/public/cpp/lazy_interface_ptr.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_APPLICATION_PUBLIC_CPP_LAZY_INTERFACE_PTR_H_
-#define MOJO_APPLICATION_PUBLIC_CPP_LAZY_INTERFACE_PTR_H_
-
-#include "mojo/application/public/cpp/connect.h"
-#include "mojo/application/public/interfaces/service_provider.mojom.h"
-
-namespace mojo {
-
-// An InterfacePtr that will request an implementation from a specified
-// ServiceProvider when it is first accessed with the get() method.
-template <typename Interface>
-class LazyInterfacePtr : public InterfacePtr<Interface> {
- public:
- LazyInterfacePtr() : service_provider_(nullptr) {}
-
- explicit LazyInterfacePtr(ServiceProvider* service_provider)
- : service_provider_(service_provider) {}
-
- void set_service_provider(ServiceProvider* service_provider) {
- if (service_provider != service_provider_) {
- InterfacePtr<Interface>::reset();
- }
- service_provider_ = service_provider;
- }
-
- Interface* get() const {
- if (!InterfacePtr<Interface>::get() && service_provider_) {
- mojo::ConnectToService<Interface>(
- service_provider_, const_cast<LazyInterfacePtr<Interface>*>(this));
- }
- return InterfacePtr<Interface>::get();
- }
- Interface* operator->() const { return get(); }
- Interface& operator*() const { return *get(); }
-
- private:
- ServiceProvider* service_provider_;
-};
-
-} // namespace mojo
-
-#endif // MOJO_APPLICATION_PUBLIC_CPP_LAZY_INTERFACE_PTR_H_
« no previous file with comments | « mojo/application/public/cpp/interface_factory_impl.h ('k') | mojo/application/public/cpp/lib/app_lifetime_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698