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

Unified Diff: shell/application_manager/application_manager.h

Issue 976823004: Nuke MOJO_APPLICATION_MANAGER_EXPORT. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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: shell/application_manager/application_manager.h
diff --git a/shell/application_manager/application_manager.h b/shell/application_manager/application_manager.h
index cce6089b97ae4fe8278903e398cca90941087015..ac01fffbaf577d7d67b3f99f05b61804a01f28b7 100644
--- a/shell/application_manager/application_manager.h
+++ b/shell/application_manager/application_manager.h
@@ -17,7 +17,6 @@
#include "mojo/public/interfaces/application/service_provider.mojom.h"
#include "mojo/services/network/public/interfaces/network_service.mojom.h"
#include "shell/application_manager/application_loader.h"
-#include "shell/application_manager/application_manager_export.h"
#include "shell/application_manager/fetcher.h"
#include "shell/application_manager/shell_impl.h"
#include "url/gurl.h"
@@ -31,9 +30,9 @@ namespace mojo {
// ApplicationManager requires implementations of NativeRunner and
// NativeRunnerFactory to run native applications.
-class MOJO_APPLICATION_MANAGER_EXPORT NativeRunner {
+class NativeRunner {
public:
- // Parameter for |Start| to specify its cleanup behavior.
+ // Parameter for |Start()| to specify its cleanup behavior.
enum CleanupBehavior { DeleteAppPath, DontDeleteAppPath };
virtual ~NativeRunner() {}
@@ -47,15 +46,15 @@ class MOJO_APPLICATION_MANAGER_EXPORT NativeRunner {
const base::Closure& app_completed_callback) = 0;
};
-class MOJO_APPLICATION_MANAGER_EXPORT NativeRunnerFactory {
+class NativeRunnerFactory {
public:
virtual ~NativeRunnerFactory() {}
virtual scoped_ptr<NativeRunner> Create() = 0;
};
-class MOJO_APPLICATION_MANAGER_EXPORT ApplicationManager {
+class ApplicationManager {
public:
- class MOJO_APPLICATION_MANAGER_EXPORT Delegate {
+ class Delegate {
public:
virtual ~Delegate();
// Send when the Application holding the handle on the other end of the
@@ -66,7 +65,7 @@ class MOJO_APPLICATION_MANAGER_EXPORT ApplicationManager {
};
// API for testing.
- class MOJO_APPLICATION_MANAGER_EXPORT TestAPI {
+ class TestAPI {
public:
explicit TestAPI(ApplicationManager* manager);
~TestAPI();
« no previous file with comments | « shell/application_manager/application_loader.h ('k') | shell/application_manager/application_manager_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698