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

Unified Diff: chrome/browser/shell_integration.h

Issue 9618021: Infrastructure to improve app mode stub <-> Chrome main communication. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Another approach Created 8 years, 9 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: chrome/browser/shell_integration.h
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h
index 8083b6aff1dc40eebc585705941a9af29e7f7edf..5dcd87a431c04a62f52fab0dfa14498c273a56fe 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,12 @@ 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();
+
// 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).

Powered by Google App Engine
This is Rietveld 408576698