| Index: extensions/browser/app_window/size_constraints.cc
|
| diff --git a/apps/size_constraints.cc b/extensions/browser/app_window/size_constraints.cc
|
| similarity index 95%
|
| rename from apps/size_constraints.cc
|
| rename to extensions/browser/app_window/size_constraints.cc
|
| index 4686965f99f5f0963bd025030bc937dcb0a6ae51..250d876d572b877c42961b86e39df2f674f9b3d9 100644
|
| --- a/apps/size_constraints.cc
|
| +++ b/extensions/browser/app_window/size_constraints.cc
|
| @@ -2,13 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "apps/size_constraints.h"
|
| +#include "extensions/browser/app_window/size_constraints.h"
|
|
|
| #include <algorithm>
|
|
|
| #include "ui/gfx/insets.h"
|
|
|
| -namespace apps {
|
| +namespace extensions {
|
|
|
| SizeConstraints::SizeConstraints()
|
| : maximum_size_(kUnboundedSize, kUnboundedSize) {}
|
| @@ -80,4 +80,4 @@ void SizeConstraints::set_maximum_size(const gfx::Size& max_size) {
|
| maximum_size_ = max_size;
|
| }
|
|
|
| -} // namespace apps
|
| +} // namespace extensions
|
|
|