Bug 1610878: Remove using namespace mozilla::java directive from AndroidAPZ.cpp; r=botond

Differential Revision: https://phabricator.services.mozilla.com/D60709

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Aaron Klotz 2020-01-22 17:45:13 +00:00
Родитель be31335d9f
Коммит 9847ab1f71
1 изменённых файлов: 6 добавлений и 8 удалений

Просмотреть файл

@ -25,11 +25,9 @@ namespace mozilla {
namespace layers {
AndroidSpecificState::AndroidSpecificState() {
using namespace mozilla::java;
sdk::ViewConfiguration::LocalRef config;
if (sdk::ViewConfiguration::Get(GeckoAppShell::GetApplicationContext(),
&config) == NS_OK) {
java::sdk::ViewConfiguration::LocalRef config;
if (java::sdk::ViewConfiguration::Get(
java::GeckoAppShell::GetApplicationContext(), &config) == NS_OK) {
int32_t speed = 0;
if (config->GetScaledMaximumFlingVelocity(&speed) == NS_OK) {
sMaxFlingSpeed = (float)speed * 0.001f;
@ -43,9 +41,9 @@ AndroidSpecificState::AndroidSpecificState() {
ANDROID_APZ_LOG("%p Failed to get ViewConfiguration\n", this);
}
StackScroller::LocalRef scroller;
if (StackScroller::New(GeckoAppShell::GetApplicationContext(), &scroller) !=
NS_OK) {
java::StackScroller::LocalRef scroller;
if (java::StackScroller::New(java::GeckoAppShell::GetApplicationContext(),
&scroller) != NS_OK) {
ANDROID_APZ_LOG("%p Failed to create Android StackScroller\n", this);
return;
}