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

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

Issue 12520005: Move desktop-specific Instant bits to c/b/ui/search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 7 years, 9 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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_INSTANT_INSTANT_OVERLAY_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_OVERLAY_CONTROLLER_H_
6 #define CHROME_BROWSER_INSTANT_INSTANT_OVERLAY_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_OVERLAY_CONTROLLER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/browser/instant/instant_overlay_model_observer.h" 9 #include "chrome/browser/ui/search/instant_overlay_model_observer.h"
10 10
11 class Browser; 11 class Browser;
12 class InstantOverlayModel; 12 class InstantOverlayModel;
13 13
14 // Abstract base class for platform-specific Instant overlay controllers. 14 // Abstract base class for platform-specific Instant overlay controllers.
15 class InstantOverlayController : public InstantOverlayModelObserver { 15 class InstantOverlayController : public InstantOverlayModelObserver {
16 protected: 16 protected:
17 explicit InstantOverlayController(Browser* browser); 17 explicit InstantOverlayController(Browser* browser);
18 virtual ~InstantOverlayController(); 18 virtual ~InstantOverlayController();
19 19
20 Browser* const browser_; 20 Browser* const browser_;
21 21
22 private: 22 private:
23 // Overridden from InstantOverlayModelObserver: 23 // Overridden from InstantOverlayModelObserver:
24 virtual void OverlayStateChanged( 24 virtual void OverlayStateChanged(
25 const InstantOverlayModel& model) OVERRIDE = 0; 25 const InstantOverlayModel& model) OVERRIDE = 0;
26 }; 26 };
27 27
28 #endif // CHROME_BROWSER_INSTANT_INSTANT_OVERLAY_CONTROLLER_H_ 28 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_OVERLAY_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/search/instant_overlay.cc ('k') | chrome/browser/ui/search/instant_overlay_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698