Index: chrome/browser/shell_integration.h |
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h |
index 8083b6aff1dc40eebc585705941a9af29e7f7edf..fa9c1ad277a2672ca87fd347e88ddb857194e835 100644 |
--- a/chrome/browser/shell_integration.h |
+++ b/chrome/browser/shell_integration.h |
@@ -13,7 +13,6 @@ |
#include "base/memory/ref_counted.h" |
#include "base/string16.h" |
#include "googleurl/src/gurl.h" |
-#include "third_party/skia/include/core/SkBitmap.h" |
#include "ui/gfx/image/image.h" |
class CommandLine; |
@@ -93,6 +92,15 @@ class ShellIntegration { |
bool create_in_quick_launch_bar; |
}; |
+ // Data that needs to be passed between the app launcher stub and Chrome. |
+ struct AppModeInfo { |
+ }; |
+ static void SetAppModeInfo(const AppModeInfo* info); |
+ static const AppModeInfo* AppModeInfo(); |
+ |
+ // Is the current instance of Chrome running in App mode. |
+ bool IsRunningInAppMode(); |
+ |
// Set up command line arguments for launching a URL or an app. |
// The new command line reuses the current process's user data directory (and |
// login profile, for ChromeOS). |