Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: chrome/test/test_location_bar.h

Issue 7541001: Move more files from chrome/test to chrome/test/base, part #3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/test_launcher_utils.cc ('k') | chrome/test/test_location_bar.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_TEST_LOCATION_BAR_H_
6 #define CHROME_TEST_TEST_LOCATION_BAR_H_
7 #pragma once
8
9 #include "chrome/browser/first_run/first_run.h"
10 #include "chrome/browser/ui/omnibox/location_bar.h"
11 #include "content/common/page_transition_types.h"
12 #include "webkit/glue/window_open_disposition.h"
13
14 class TestLocationBar : public LocationBar {
15 public:
16 TestLocationBar();
17 virtual ~TestLocationBar();
18
19 void set_input_string(const std::wstring& input_string) {
20 input_string_ = input_string;
21 }
22 void set_disposition(WindowOpenDisposition disposition) {
23 disposition_ = disposition;
24 }
25 void set_transition(PageTransition::Type transition) {
26 transition_ = transition;
27 }
28
29 // Overridden from LocationBar:
30 virtual void ShowFirstRunBubble(FirstRun::BubbleType bubble_type) OVERRIDE {}
31 virtual void SetSuggestedText(const string16& text,
32 InstantCompleteBehavior behavior) OVERRIDE {}
33 virtual std::wstring GetInputString() const OVERRIDE;
34 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE;
35 virtual PageTransition::Type GetPageTransition() const OVERRIDE;
36 virtual void AcceptInput() OVERRIDE {}
37 virtual void FocusLocation(bool select_all) OVERRIDE {}
38 virtual void FocusSearch() OVERRIDE {}
39 virtual void UpdateContentSettingsIcons() OVERRIDE {}
40 virtual void UpdatePageActions() OVERRIDE {}
41 virtual void InvalidatePageActions() OVERRIDE {}
42 virtual void SaveStateToContents(TabContents* contents) OVERRIDE {}
43 virtual void Revert() OVERRIDE {}
44 virtual const OmniboxView* location_entry() const OVERRIDE;
45 virtual OmniboxView* location_entry() OVERRIDE;
46 virtual LocationBarTesting* GetLocationBarForTesting() OVERRIDE;
47
48 private:
49
50 // Test-supplied values that will be returned through the LocationBar
51 // interface.
52 std::wstring input_string_;
53 WindowOpenDisposition disposition_;
54 PageTransition::Type transition_;
55
56 DISALLOW_COPY_AND_ASSIGN(TestLocationBar);
57 };
58
59
60 #endif // CHROME_TEST_TEST_LOCATION_BAR_H_
OLDNEW
« no previous file with comments | « chrome/test/test_launcher_utils.cc ('k') | chrome/test/test_location_bar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698