| Index: ui/gfx/shadow_value.cc
|
| diff --git a/ui/gfx/shadow_value.cc b/ui/gfx/shadow_value.cc
|
| index 4df50132d05e1476ac10e10e8a259420563f14cb..c8915e20107e166e5f31c2809a5235dd923e5fb7 100644
|
| --- a/ui/gfx/shadow_value.cc
|
| +++ b/ui/gfx/shadow_value.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "ui/gfx/shadow_value.h"
|
|
|
| +#include <algorithm>
|
| +
|
| #include "base/stringprintf.h"
|
| #include "ui/gfx/insets.h"
|
|
|
| @@ -37,7 +39,7 @@ std::string ShadowValue::ToString() const {
|
| }
|
|
|
| // static
|
| -Insets ShadowValue::GetMargin(const std::vector<ShadowValue>& shadows) {
|
| +Insets ShadowValue::GetMargin(const ShadowValues& shadows) {
|
| int left = 0;
|
| int top = 0;
|
| int right = 0;
|
|
|