| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_TEST_TEST_LOCATION_BAR_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_LOCATION_BAR_H_ |
| 6 #define CHROME_TEST_TEST_LOCATION_BAR_H_ | 6 #define CHROME_TEST_BASE_TEST_LOCATION_BAR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/first_run/first_run.h" | 9 #include "chrome/browser/first_run/first_run.h" |
| 10 #include "chrome/browser/ui/omnibox/location_bar.h" | 10 #include "chrome/browser/ui/omnibox/location_bar.h" |
| 11 #include "content/common/page_transition_types.h" | 11 #include "content/common/page_transition_types.h" |
| 12 #include "webkit/glue/window_open_disposition.h" | 12 #include "webkit/glue/window_open_disposition.h" |
| 13 | 13 |
| 14 class TestLocationBar : public LocationBar { | 14 class TestLocationBar : public LocationBar { |
| 15 public: | 15 public: |
| 16 TestLocationBar(); | 16 TestLocationBar(); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // Test-supplied values that will be returned through the LocationBar | 50 // Test-supplied values that will be returned through the LocationBar |
| 51 // interface. | 51 // interface. |
| 52 std::wstring input_string_; | 52 std::wstring input_string_; |
| 53 WindowOpenDisposition disposition_; | 53 WindowOpenDisposition disposition_; |
| 54 PageTransition::Type transition_; | 54 PageTransition::Type transition_; |
| 55 | 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(TestLocationBar); | 56 DISALLOW_COPY_AND_ASSIGN(TestLocationBar); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 | 59 |
| 60 #endif // CHROME_TEST_TEST_LOCATION_BAR_H_ | 60 #endif // CHROME_TEST_BASE_TEST_LOCATION_BAR_H_ |
| OLD | NEW |