Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome_elf/chrome_elf_constants.h" | |
| 6 | |
| 7 const wchar_t kUserDataDirName[] = L"User Data"; | |
| 8 | |
| 9 #if defined(GOOGLE_CHROME_BUILD) | |
| 10 const wchar_t kAppDataDirName[] = L"Google\\Chrome"; | |
| 11 #else | |
| 12 const wchar_t kAppDataDirName[] = L"Chromium"; | |
| 13 #endif | |
| OLD | NEW |