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

Unified Diff: chrome/browser/instant/instant_overlay_model.cc

Issue 12387089: Instant: Rename 'preview' to 'overlay' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/instant/instant_overlay_model.cc
diff --git a/chrome/browser/instant/instant_overlay_model.cc b/chrome/browser/instant/instant_overlay_model.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f08b74a9ad2f41135232f000b8d8d1e86aa69167
--- /dev/null
+++ b/chrome/browser/instant/instant_overlay_model.cc
@@ -0,0 +1,66 @@
+// Copyright 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/instant/instant_overlay_model.h"
+
+#include "chrome/browser/instant/instant_controller.h"
+#include "chrome/browser/instant/instant_overlay_model_observer.h"
+
+InstantOverlayModel::InstantOverlayModel(InstantController* controller)
+ : height_(0),
+ height_units_(INSTANT_SIZE_PIXELS),
+ overlay_contents_(NULL),
+ controller_(controller) {
+}
+
+InstantOverlayModel::~InstantOverlayModel() {
+}
+
+void InstantOverlayModel::SetOverlayState(const chrome::search::Mode& mode,
+ int height,
+ InstantSizeUnits height_units) {
+ if (mode_.mode == mode.mode && height_ == height &&
+ height_units_ == height_units) {
+ // Mode::mode hasn't changed, but perhaps bits that we ignore (such as
+ // Mode::origin) have. Update |mode_| anyway, so it's consistent with the
+ // argument (so mode() doesn't return something unexpected).
+ mode_ = mode;
+ return;
+ }
+
+ DVLOG(1) << "SetOverlayState: " << mode_.mode << " to " << mode.mode;
+ mode_ = mode;
+ height_ = height;
+ height_units_ = height_units;
+
+ FOR_EACH_OBSERVER(InstantOverlayModelObserver, observers_,
+ OverlayStateChanged(*this));
+}
+
+void InstantOverlayModel::SetOverlayContents(
+ content::WebContents* overlay_contents) {
+ if (overlay_contents_ == overlay_contents)
+ return;
+
+ overlay_contents_ = overlay_contents;
+
+ FOR_EACH_OBSERVER(InstantOverlayModelObserver, observers_,
+ OverlayStateChanged(*this));
+}
+
+content::WebContents* InstantOverlayModel::GetOverlayContents() const {
+ // |controller_| maybe NULL durning tests.
+ if (controller_)
+ return controller_->GetOverlayContents();
+ return overlay_contents_;
+}
+
+void InstantOverlayModel::AddObserver(InstantOverlayModelObserver* observer) {
+ observers_.AddObserver(observer);
+}
+
+void InstantOverlayModel::RemoveObserver(
+ InstantOverlayModelObserver* observer) {
+ observers_.RemoveObserver(observer);
+}
« no previous file with comments | « chrome/browser/instant/instant_overlay_model.h ('k') | chrome/browser/instant/instant_overlay_model_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698