removed 'chrome::' namespace from "chrome/browser/*"
Bug: 41050580 Change-Id: I72498e0a0332f7db160297ad0d27d5586a8d7a82 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6109132 Reviewed-by: Ted Choc <tedchoc@chromium.org> Reviewed-by: Dominic Battré <battre@chromium.org> Reviewed-by: Gabriel Charette <gab@chromium.org> Commit-Queue: Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/main@{#1401500}
This commit is contained in:

committed by
Chromium LUCI CQ

parent
f8592d1f82
commit
7b99d61afe
AUTHORS
chrome/browser
1
AUTHORS
1
AUTHORS
@ -626,6 +626,7 @@ Jared Wein <weinjared@gmail.com>
|
||||
Jari Karppanen <jkarp@amazon.com>
|
||||
Jason Gronn <jasontopia03@gmail.com>
|
||||
Javayhu <javayhu@gmail.com>
|
||||
Jay Kapadia <jaykapadia389@gmail.com>
|
||||
Jay Oster <jay@kodewerx.org>
|
||||
Jay Soffian <jaysoffian@gmail.com>
|
||||
Jay Yang <sjyang1126@gmail.com>
|
||||
|
@ -9,7 +9,6 @@
|
||||
// Must come after all headers that specialize FromJniType() / ToJniType().
|
||||
#include "chrome/browser/partnercustomizations/jni_headers/PartnerBrowserCustomizations_jni.h"
|
||||
|
||||
namespace chrome {
|
||||
namespace android {
|
||||
|
||||
bool PartnerBrowserCustomizations::IsIncognitoDisabled() {
|
||||
@ -18,4 +17,3 @@ bool PartnerBrowserCustomizations::IsIncognitoDisabled() {
|
||||
}
|
||||
|
||||
} // namespace android
|
||||
} // namespace chrome
|
||||
|
@ -5,7 +5,6 @@
|
||||
#ifndef CHROME_BROWSER_ANDROID_PARTNER_BROWSER_CUSTOMIZATIONS_H_
|
||||
#define CHROME_BROWSER_ANDROID_PARTNER_BROWSER_CUSTOMIZATIONS_H_
|
||||
|
||||
namespace chrome {
|
||||
namespace android {
|
||||
|
||||
class PartnerBrowserCustomizations {
|
||||
@ -20,6 +19,5 @@ class PartnerBrowserCustomizations {
|
||||
};
|
||||
|
||||
} // namespace android
|
||||
} // namespace chrome
|
||||
|
||||
#endif // CHROME_BROWSER_ANDROID_PARTNER_BROWSER_CUSTOMIZATIONS_H_
|
||||
|
@ -118,7 +118,7 @@ bool IncognitoModePrefs::ArePlatformParentalControlsEnabled() {
|
||||
#if BUILDFLAG(IS_WIN)
|
||||
return GetWinParentalControls().logging_required;
|
||||
#elif BUILDFLAG(IS_ANDROID)
|
||||
return chrome::android::PartnerBrowserCustomizations::IsIncognitoDisabled();
|
||||
return android::PartnerBrowserCustomizations::IsIncognitoDisabled();
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user