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

Unified Diff: apps/app_shim/app_shim_launch.h

Issue 585123004: Mac: Give app_shim code a nicer home (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: various cleanups Created 6 years, 3 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
« no previous file with comments | « apps/app_shim/app_shim_interactive_uitest_mac.mm ('k') | apps/app_shim/app_shim_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/app_shim/app_shim_launch.h
diff --git a/apps/app_shim/app_shim_launch.h b/apps/app_shim/app_shim_launch.h
deleted file mode 100644
index 61f87da6dda8d592c7af569ea18bce25bb27873c..0000000000000000000000000000000000000000
--- a/apps/app_shim/app_shim_launch.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2013 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 APPS_APP_SHIM_APP_SHIM_LAUNCH_H_
-#define APPS_APP_SHIM_APP_SHIM_LAUNCH_H_
-
-namespace apps {
-
-enum AppShimLaunchType {
- // Process the app shim's LaunchAppmessage and associate the shim with the
- // given profile and app id.
- APP_SHIM_LAUNCH_REGISTER_ONLY = 0,
- // Do the above and launch the app.
- APP_SHIM_LAUNCH_NORMAL,
- // Counter and end marker.
- APP_SHIM_LAUNCH_NUM_TYPES
-};
-
-enum AppShimLaunchResult {
- // App launched successfully.
- APP_SHIM_LAUNCH_SUCCESS = 0,
- // There is already a host registered for this app.
- APP_SHIM_LAUNCH_DUPLICATE_HOST,
- // The profile was not found.
- APP_SHIM_LAUNCH_PROFILE_NOT_FOUND,
- // The app was not found.
- APP_SHIM_LAUNCH_APP_NOT_FOUND,
- // Counter and end marker.
- APP_SHIM_LAUNCH_NUM_RESULTS
-};
-
-enum AppShimFocusType {
- // Just focus the app.
- APP_SHIM_FOCUS_NORMAL = 0,
- // Focus the app or launch it if it has no windows open.
- APP_SHIM_FOCUS_REOPEN,
- // Open the given file in the app.
- APP_SHIM_FOCUS_OPEN_FILES,
- // Counter and end marker.
- APP_SHIM_FOCUS_NUM_TYPES
-};
-
-enum AppShimAttentionType {
- // Removes any active attention request.
- APP_SHIM_ATTENTION_CANCEL = 0,
- // Bounces the shim in the dock briefly.
- APP_SHIM_ATTENTION_INFORMATIONAL,
- // Bounces the shim in the dock continuously.
- APP_SHIM_ATTENTION_CRITICAL,
- // Counter and end marker.
- APP_SHIM_ATTENTION_NUM_TYPES
-};
-
-} // namespace apps
-
-#endif // APPS_APP_SHIM_APP_SHIM_LAUNCH_H_
« no previous file with comments | « apps/app_shim/app_shim_interactive_uitest_mac.mm ('k') | apps/app_shim/app_shim_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698