summaryrefslogtreecommitdiffstats
path: root/ceee
diff options
context:
space:
mode:
authormad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-09 16:47:46 +0000
committermad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-09 16:47:46 +0000
commit2ba61db6360ee367848302eb0b88a26926c81402 (patch)
treee21a75b4a57dc9cbe3ce6bbd41fb0640fddcf75a /ceee
parentd2b63291f8d1146a92e13065452c28b5394c2c11 (diff)
downloadchromium_src-2ba61db6360ee367848302eb0b88a26926c81402.zip
chromium_src-2ba61db6360ee367848302eb0b88a26926c81402.tar.gz
chromium_src-2ba61db6360ee367848302eb0b88a26926c81402.tar.bz2
Add the new Pin field added in rev65379.
BUG=0 TEST=None. Review URL: http://codereview.chromium.org/4641002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65539 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee')
-rw-r--r--ceee/ie/broker/tab_api_module.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/ceee/ie/broker/tab_api_module.cc b/ceee/ie/broker/tab_api_module.cc
index c75e2c1..7b8b6ff 100644
--- a/ceee/ie/broker/tab_api_module.cc
+++ b/ceee/ie/broker/tab_api_module.cc
@@ -189,6 +189,9 @@ bool TabApiResult::CreateTabValue(int tab_id, long index) {
scoped_ptr<DictionaryValue> result(new DictionaryValue());
result->SetInteger(ext::kIdKey, tab_id);
+ // TODO(mad@chromium.org): Support the pin field.
+ result->SetBoolean(ext::kPinnedKey, false);
+
// The window ID is just the window handle of the frame window, which is the
// top-level ancestor of this window.
HWND frame_window = window_utils::GetTopLevelParent(tab_window);