summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc4
-rw-r--r--chrome/common/chrome_switches.h1
-rw-r--r--chrome/common/plugin_messages_internal.h5
3 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 046b7ea..a156748 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -112,6 +112,10 @@ const wchar_t kTestSandbox[] = L"test-sandbox";
// for all of its state.
const wchar_t kUserDataDir[] = L"user-data-dir";
+// Specifies the plugin data directory, which is where plugins (Gears
+// specifically) will store its state.
+const wchar_t kPluginDataDir[] = L"plugin-data-dir";
+
// Specifies the path to the user data folder for the parent profile.
const wchar_t kParentProfile[] = L"parent-profile";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index e712596..65a7e00 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -39,6 +39,7 @@ extern const wchar_t kSafePlugins[];
extern const wchar_t kTrustedPlugins[];
extern const wchar_t kTestSandbox[];
extern const wchar_t kUserDataDir[];
+extern const wchar_t kPluginDataDir[];
extern const wchar_t kParentProfile[];
extern const wchar_t kApp[];
extern const wchar_t kAppUploadFile[];
diff --git a/chrome/common/plugin_messages_internal.h b/chrome/common/plugin_messages_internal.h
index 1d9380c..c806bf0 100644
--- a/chrome/common/plugin_messages_internal.h
+++ b/chrome/common/plugin_messages_internal.h
@@ -62,11 +62,6 @@ IPC_BEGIN_MESSAGES(PluginProcessHost, 4)
std::vector<uint8> /* opaque data */,
std::vector<uint8> /* opaque data response */)
- // Retrieve the given type of info that is associated with the given
- // CPBrowsingContext. Returns the result in a string.
- IPC_SYNC_MESSAGE_CONTROL0_1(PluginProcessHostMsg_GetPluginDataDir,
- std::wstring /* data_dir_retval */)
-
// Used to get cookies for the given URL. The request_context is a
// CPBrowsingContext, but is passed as int32 to avoid compilation errors.
IPC_SYNC_MESSAGE_CONTROL2_1(PluginProcessHostMsg_GetCookies,