ash_constants.cc 789 B

12345678910111213141516171819202122
  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. #include "ash/constants/ash_constants.h"
  5. #define FPL FILE_PATH_LITERAL
  6. namespace ash {
  7. const base::FilePath::CharType kDriveCacheDirname[] = FPL("GCache");
  8. const base::FilePath::CharType kNssCertDbPath[] = FPL(".pki/nssdb/cert9.db");
  9. const base::FilePath::CharType kNssKeyDbPath[] = FPL(".pki/nssdb/key4.db");
  10. const char kSwitchAccessInternalDevice[] = "internal";
  11. const char kSwitchAccessUsbDevice[] = "usb";
  12. const char kSwitchAccessBluetoothDevice[] = "bluetooth";
  13. const char kSwitchAccessUnknownDevice[] = "unknown";
  14. const char kFakeNowTimeStringInPixelTest[] = "Sun, 6 May 2018 14:30:00 CDT";
  15. } // namespace ash