blob: 79f3c0a34ce295beba161c6f682cf4dbe8b5b9bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/system_monitor/media_device_notifications_utils.h"
#include "base/file_util.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/system_monitor/removable_device_constants.h"
#include "content/public/browser/browser_thread.h"
#include "ui/base/text/bytes_formatting.h"
namespace chrome {
bool IsMediaDevice(const FilePath::StringType& mount_point) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
FilePath dcim_path(mount_point);
FilePath::StringType dcim_dir(kDCIMDirectoryName);
if (!file_util::DirectoryExists(dcim_path.Append(dcim_dir))) {
// Check for lowercase 'dcim' as well.
FilePath dcim_path_lower(dcim_path.Append(StringToLowerASCII(dcim_dir)));
if (!file_util::DirectoryExists(dcim_path_lower))
return false;
}
return true;
}
string16 GetFullProductName(const std::string& vendor_name,
const std::string& model_name) {
if (vendor_name.empty() && model_name.empty())
return string16();
std::string product_name;
if (vendor_name.empty())
product_name = model_name;
else if (model_name.empty())
product_name = vendor_name;
else
product_name = vendor_name + ", " + model_name;
return IsStringUTF8(product_name) ?
UTF8ToUTF16("(" + product_name + ")") : string16();
}
string16 GetDisplayNameForDevice(uint64 storage_size_in_bytes,
const string16& name) {
DCHECK(!name.empty());
return (storage_size_in_bytes == 0) ?
name : ui::FormatBytes(storage_size_in_bytes) + ASCIIToUTF16(" ") + name;
}
} // namespace chrome
|