summaryrefslogtreecommitdiffstats
path: root/chrome/browser/shell_integration.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/shell_integration.h')
-rw-r--r--chrome/browser/shell_integration.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h
index 8083b6a..fa9c1ad 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).