| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/chrome_paths_internal.h" | 5 #include "chrome/common/chrome_paths_internal.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 #include <knownfolders.h> | 8 #include <knownfolders.h> |
| 9 #include <shellapi.h> | 9 #include <shellapi.h> |
| 10 #include <shlobj.h> | 10 #include <shlobj.h> |
| 11 #include <shobjidl.h> | 11 #include <shobjidl.h> |
| 12 | 12 |
| 13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
| 15 #include "base/win/metro.h" | 15 #include "base/win/metro.h" |
| 16 #include "base/win/scoped_co_mem.h" | 16 #include "base/win/scoped_co_mem.h" |
| 17 #include "chrome/common/chrome_constants.h" | 17 #include "chrome/common/chrome_constants.h" |
| 18 #include "chrome/installer/util/browser_distribution.h" | 18 #include "chrome/installer/util/browser_distribution.h" |
| 19 #include "content/public/common/content_switches.h" | 19 #include "content/public/common/content_switches.h" |
| 20 | 20 |
| 21 namespace chrome { | 21 namespace chrome { |
| 22 | 22 |
| 23 bool GetDefaultUserDataDirectory(FilePath* result) { | 23 bool GetDefaultUserDataDirectory(FilePath* result) { |
| 24 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) | 24 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) |
| 25 return false; | 25 return false; |
| 26 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); | 26 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
| 27 *result = result->Append(dist->GetInstallSubDir()); | 27 *result = result->Append(dist->GetInstallSubDir()); |
| 28 if (base::win::GetMetroModule()) | 28 if (base::win::InMetroMode()) |
| 29 *result = result->Append(kMetroChromeUserDataSubDir); | 29 *result = result->Append(kMetroChromeUserDataSubDir); |
| 30 *result = result->Append(chrome::kUserDataDirname); | 30 *result = result->Append(chrome::kUserDataDirname); |
| 31 return true; | 31 return true; |
| 32 } | 32 } |
| 33 | 33 |
| 34 bool GetChromeFrameUserDataDirectory(FilePath* result) { | 34 bool GetChromeFrameUserDataDirectory(FilePath* result) { |
| 35 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) | 35 if (!PathService::Get(base::DIR_LOCAL_APP_DATA, result)) |
| 36 return false; | 36 return false; |
| 37 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( | 37 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( |
| 38 BrowserDistribution::CHROME_FRAME); | 38 BrowserDistribution::CHROME_FRAME); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // investigated and fixed if possible. | 118 // investigated and fixed if possible. |
| 119 return process_type.empty() || | 119 return process_type.empty() || |
| 120 process_type == switches::kServiceProcess || | 120 process_type == switches::kServiceProcess || |
| 121 process_type == switches::kGpuProcess || | 121 process_type == switches::kGpuProcess || |
| 122 process_type == switches::kNaClBrokerProcess || | 122 process_type == switches::kNaClBrokerProcess || |
| 123 process_type == switches::kNaClLoaderProcess || | 123 process_type == switches::kNaClLoaderProcess || |
| 124 process_type == switches::kPpapiBrokerProcess; | 124 process_type == switches::kPpapiBrokerProcess; |
| 125 } | 125 } |
| 126 | 126 |
| 127 } // namespace chrome | 127 } // namespace chrome |
| OLD | NEW |