Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2d0d24b authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix google-explicit-constructor warnings."

am: 8a414ede

* commit '8a414ede':
  Fix google-explicit-constructor warnings.

Change-Id: I7326206fbc97d0e80c5ca8be62fa39dc174293e1
parents 168dc86c 8a414ede
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ const struct blendType {
// Local types
class Rectangle {
public:
    Rectangle(uint32_t graphicFormat = defaultFormat,
    explicit Rectangle(uint32_t graphicFormat = defaultFormat,
              HwcTestDim dfDim = HwcTestDim(1, 1),
              HwcTestDim sDim = HwcTestDim(1, 1));
    void setSourceDim(HwcTestDim dim);
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ namespace android {
class BpBatteryPropertiesListener : public BpInterface<IBatteryPropertiesListener>
{
public:
    BpBatteryPropertiesListener(const sp<IBinder>& impl)
    explicit BpBatteryPropertiesListener(const sp<IBinder>& impl)
        : BpInterface<IBatteryPropertiesListener>(impl)
    {
    }
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ namespace android {

class BpBatteryPropertiesRegistrar : public BpInterface<IBatteryPropertiesRegistrar> {
public:
    BpBatteryPropertiesRegistrar(const sp<IBinder>& impl)
    explicit BpBatteryPropertiesRegistrar(const sp<IBinder>& impl)
        : BpInterface<IBatteryPropertiesRegistrar>(impl) {}

        void registerListener(const sp<IBatteryPropertiesListener>& listener) {
+1 −1
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ class FakeEventHub : public EventHubInterface {
        KeyedVector<int32_t, bool> leds;
        Vector<VirtualKeyDefinition> virtualKeys;

        Device(uint32_t classes) :
        explicit Device(uint32_t classes) :
                classes(classes) {
        }
    };
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ namespace android {
class BpPowerManager : public BpInterface<IPowerManager>
{
public:
    BpPowerManager(const sp<IBinder>& impl)
    explicit BpPowerManager(const sp<IBinder>& impl)
        : BpInterface<IPowerManager>(impl)
    {
    }