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

Unified Diff: mandoline/services/core_services/application_delegate_factory.h

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 years, 10 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: mandoline/services/core_services/application_delegate_factory.h
diff --git a/mandoline/services/core_services/application_delegate_factory.h b/mandoline/services/core_services/application_delegate_factory.h
deleted file mode 100644
index 60adff063a65e844ab539fdc664b7191913ca294..0000000000000000000000000000000000000000
--- a/mandoline/services/core_services/application_delegate_factory.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2015 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 MANDOLINE_SERVICES_CORE_SERVICES_APPLICATION_DELEGATE_FACTORY_H_
-#define MANDOLINE_SERVICES_CORE_SERVICES_APPLICATION_DELEGATE_FACTORY_H_
-
-#include <string>
-
-#include "base/memory/scoped_ptr.h"
-
-namespace mojo {
-class ShellClient;
-}
-
-namespace core_services {
-
-// This is always called to create a platform specific ShellClient.
-scoped_ptr<mojo::ShellClient> CreatePlatformSpecificApplicationDelegate(
- const std::string& url);
-
-// The following are conditionally called. You do not need to call these from
-// CreatePlatformSpecificApplicationDelegate(), they are called (if appropriate)
-// before CreatePlatformSpecificApplicationDelegate().
-#if !defined(OS_ANDROID)
-scoped_ptr<mojo::ShellClient> CreateApplicationDelegateNotAndroid(
- const std::string& url);
-#endif
-
-} // namespace core_services
-
-#endif // MANDOLINE_SERVICES_CORE_SERVICES_APPLICATION_DELEGATE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698