blob: 00b2c12f190f16e28af11d9b03b71e089ab32c3b (
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
54
55
56
57
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "DeviceProviderHelpers.h"
#include "nsCOMPtr.h"
#include "nsIURI.h"
#include "nsNetUtil.h"
namespace mozilla {
namespace dom {
namespace presentation {
static const char* const kFxTVPresentationAppUrls[] = {
"app://fling-player.gaiamobile.org/index.html",
"app://notification-receiver.gaiamobile.org/index.html",
nullptr
};
/* static */ bool
DeviceProviderHelpers::IsCommonlySupportedScheme(const nsAString& aUrl)
{
nsCOMPtr<nsIURI> uri;
nsresult rv = NS_NewURI(getter_AddRefs(uri), aUrl);
if (NS_FAILED(rv) || !uri) {
return false;
}
nsAutoCString scheme;
uri->GetScheme(scheme);
if (scheme.LowerCaseEqualsLiteral("http") ||
scheme.LowerCaseEqualsLiteral("https")) {
return true;
}
return false;
}
/* static */ bool
DeviceProviderHelpers::IsFxTVSupportedAppUrl(const nsAString& aUrl)
{
// Check if matched with any presentation Apps on TV.
for (uint32_t i = 0; kFxTVPresentationAppUrls[i]; i++) {
if (aUrl.EqualsASCII(kFxTVPresentationAppUrls[i])) {
return true;
}
}
return false;
}
} // namespace presentation
} // namespace dom
} // namespace mozilla
|