Home | History | Annotate | Download | only in apps

Lines Matching refs:window_id

50                                    const std::string& window_id,
72 const std::string& window_id,
87 dict->SetWithoutPathExpansion(window_id, value);
219 const std::string window_id(kWindowId);
228 cache_->SaveGeometry(extension_id, window_id, bounds, screen_bounds, state);
235 extension_id, window_id, &new_bounds, &new_screen_bounds, &new_state));
248 ASSERT_TRUE(dict->HasKey(window_id));
250 ASSERT_TRUE(dict->GetInteger(window_id + ".x", &v));
252 ASSERT_TRUE(dict->GetInteger(window_id + ".y", &v));
254 ASSERT_TRUE(dict->GetInteger(window_id + ".w", &v));
256 ASSERT_TRUE(dict->GetInteger(window_id + ".h", &v));
258 ASSERT_TRUE(dict->GetInteger(window_id + ".screen_bounds_x", &v));
260 ASSERT_TRUE(dict->GetInteger(window_id + ".screen_bounds_y", &v));
262 ASSERT_TRUE(dict->GetInteger(window_id + ".screen_bounds_w", &v));
264 ASSERT_TRUE(dict->GetInteger(window_id + ".screen_bounds_h", &v));
266 ASSERT_TRUE(dict->GetInteger(window_id + ".state", &v));
273 extension_id, window_id, &new_bounds, &new_screen_bounds, &new_state));
351 std::string window_id = "window_" + base::IntToString(i);
353 extension_id, window_id, bounds, screen_bounds, ui::SHOW_STATE_NORMAL);
360 std::string window_id = "window_" + base::IntToString(i);
361 EXPECT_TRUE(cache_->GetGeometry(extension_id, window_id, NULL, NULL, NULL));