summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/wm_overview_snapshot.cc
diff options
context:
space:
mode:
authorderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-29 18:17:42 +0000
committerderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-29 18:17:42 +0000
commit54cfd69da88df660a056ababe8f9ed8aff8d8e9b (patch)
tree1eb452367fe3eaeb27cb53629a516cba37428583 /chrome/browser/chromeos/wm_overview_snapshot.cc
parent121594b409d3d7459ae7a8068e2bae9b8b222d0f (diff)
downloadchromium_src-54cfd69da88df660a056ababe8f9ed8aff8d8e9b.zip
chromium_src-54cfd69da88df660a056ababe8f9ed8aff8d8e9b.tar.gz
chromium_src-54cfd69da88df660a056ababe8f9ed8aff8d8e9b.tar.bz2
chromeos: Make Chrome use enums from libcros to talk to WM.
We currently have two copies of these enums, one in Chrome and one in Chrome OS. I'm switching us to have a single copy in the libcros repo. This reverts r45955, which reverted r45952. I've added third_party/cros to the browser directory's DEPS file to fix the checkdeps.py failure. http://codereview.chromium.org/1811002/show contains the review of the original change. BUG=none TEST=built it and ran checkdeps.py manually Review URL: http://codereview.chromium.org/1705017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/wm_overview_snapshot.cc')
-rw-r--r--chrome/browser/chromeos/wm_overview_snapshot.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/wm_overview_snapshot.cc b/chrome/browser/chromeos/wm_overview_snapshot.cc
index 97c2a8e..3ae6fd0 100644
--- a/chrome/browser/chromeos/wm_overview_snapshot.cc
+++ b/chrome/browser/chromeos/wm_overview_snapshot.cc
@@ -58,7 +58,7 @@ void WmOverviewSnapshot::UpdateIndex(Browser* browser, int index) {
params.push_back(index);
WmIpc::instance()->SetWindowType(
GetNativeView(),
- WmIpc::WINDOW_TYPE_CHROME_TAB_SNAPSHOT,
+ WM_IPC_WINDOW_CHROME_TAB_SNAPSHOT,
&params);
index_ = index;
}