| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ |
| 6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ | 6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "chrome/browser/ui/search/search_types.h" | 10 #include "chrome/browser/ui/search/search_types.h" |
| 11 #include "third_party/skia/include/core/SkColor.h" | |
| 12 #include "ui/gfx/rect.h" | |
| 13 | 11 |
| 14 class TabContents; | 12 class TabContents; |
| 15 | 13 |
| 16 namespace content { | 14 namespace content { |
| 17 class WebContents; | 15 class WebContents; |
| 18 } | 16 } |
| 19 | 17 |
| 20 namespace chrome { | 18 namespace chrome { |
| 21 namespace search { | 19 namespace search { |
| 22 | 20 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // Observers. | 58 // Observers. |
| 61 ObserverList<SearchModelObserver> observers_; | 59 ObserverList<SearchModelObserver> observers_; |
| 62 | 60 |
| 63 DISALLOW_COPY_AND_ASSIGN(SearchModel); | 61 DISALLOW_COPY_AND_ASSIGN(SearchModel); |
| 64 }; | 62 }; |
| 65 | 63 |
| 66 } // namespace search | 64 } // namespace search |
| 67 } // namespace chrome | 65 } // namespace chrome |
| 68 | 66 |
| 69 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ | 67 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_H_ |
| OLD | NEW |