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

Side by Side Diff: chrome/browser/ui/search/search_model_observer.h

Issue 10644002: Add core plumbing for Instant Extended work (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed UI stuff from SearchModel Created 8 years, 6 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_OBSERVER_H_
6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_OBSERVER_H_
7 #pragma once
8
9 namespace chrome {
10 namespace search {
11
12 struct Location;
tfarina 2012/06/21 22:28:55 nit: remove this, unused in this header file.
dhollowa 2012/06/21 23:53:42 Done.
13 struct Mode;
14
15 // This class defines the observer interface for the |SearchModel|.
16 class SearchModelObserver {
17 public:
18 // Informs the observer that the mode has changed.
19 virtual void ModeChanged(const Mode& mode) = 0;
20
21 protected:
22 virtual ~SearchModelObserver() {}
23 };
24
25 } // namespace search
26 } // namespace chrome
27
28 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_MODEL_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698