summaryrefslogtreecommitdiffstats
path: root/chrome/browser/find_bar_state.h
blob: 801779e364ad3264eb7c7ad76d4ac822759a8bb5 (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
35
36
37
38
39
40
41
// Copyright (c) 2010 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.

// Stores per-profile state needed for find in page.  This includes the most
// recently searched for term.

#ifndef CHROME_BROWSER_FIND_BAR_STATE_H_
#define CHROME_BROWSER_FIND_BAR_STATE_H_
#pragma once

#include "base/basictypes.h"
#include "base/string16.h"

class Profile;

class FindBarState {
 public:
  FindBarState() {}
  ~FindBarState() {}

  string16 last_prepopulate_text() const {
    return last_prepopulate_text_;
  }

  void set_last_prepopulate_text(const string16& text) {
    last_prepopulate_text_ = text;
  }

  // Retrieves the last prepopulate text for a given Profile.  If the profile is
  // off the record and has an empty prepopulate text, falls back to the
  // prepopulate text from the normal profile.
  static string16 GetLastPrepopulateText(Profile* profile);

 private:
  string16 last_prepopulate_text_;

  DISALLOW_COPY_AND_ASSIGN(FindBarState);
};

#endif  // CHROME_BROWSER_FIND_BAR_STATE_H_