summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_window_state.h
blob: d7810d5f66703af997648618bba76079743aec2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_
#define CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_

#include <string>

#include "ui/base/ui_base_types.h"

class Browser;

namespace gfx {
class Rect;
}

namespace chrome {

std::string GetWindowPlacementKey(const Browser* browser);

bool ShouldSaveWindowPlacement(const Browser* browser);

void SaveWindowPlacement(const Browser* browser,
                         const gfx::Rect& bounds,
                         ui::WindowShowState show_state);

gfx::Rect GetSavedWindowBounds(const Browser* browser);

ui::WindowShowState GetSavedWindowShowState(const Browser* browser);

}  // namespace chrome

#endif  // CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_