Index: chrome/common/chrome_paths.cc |
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc |
index e9d841f4afbeab412725d9c4e6404e895cf40eae..8a6b57a7a7a5c4b75ed5610303b4eb37e0379893 100644 |
--- a/chrome/common/chrome_paths.cc |
+++ b/chrome/common/chrome_paths.cc |
@@ -44,6 +44,11 @@ const base::FilePath::CharType kInternalFlashPluginFileName[] = |
const base::FilePath::CharType kPepperFlashBaseDirectory[] = |
FILE_PATH_LITERAL("PepperFlash"); |
+#if defined(OS_WIN) |
+const base::FilePath::CharType kPepperFlashDebuggerBaseDirectory[] = |
+ FILE_PATH_LITERAL("Macromed\\Flash"); |
+#endif |
+ |
// File name of the internal PDF plugin on different platforms. |
const base::FilePath::CharType kInternalPDFPluginFileName[] = |
#if defined(OS_WIN) |
@@ -263,6 +268,11 @@ bool PathProvider(int key, base::FilePath* result) { |
return false; |
cur = cur.Append(kPepperFlashBaseDirectory); |
break; |
+#if defined(OS_WIN) |
+ case chrome::DIR_PEPPER_FLASH_DEBUGGER_PLUGIN: |
+ cur = cur.Append(kPepperFlashDebuggerBaseDirectory); |
+ break; |
+#endif |
case chrome::FILE_LOCAL_STATE: |
if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) |
return false; |