OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:view_size
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/chromeos/
setting_level_bubble.cc
111
const gfx::Size
view_size
= view_->GetPreferredSize();
local
113
const int x =
view_size
.width() / 2 +
114
kBubbleXRatio * (bounds.width() -
view_size
.width());
115
const int y = bounds.height() -
view_size
.height() / 2 - kBubbleBottomGap;
/external/chromium/chrome/browser/ui/views/download/
download_shelf_view.cc
303
gfx::Size
view_size
= (*ri)->GetPreferredSize();
local
308
int item_width =
view_size
.width();
310
item_width = static_cast<int>(static_cast<double>(
view_size
.width()) *
319
(*ri)->SetBounds(x, CenterPosition(
view_size
.height(), height()),
320
item_width,
view_size
.height());
/external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.cc
867
gfx::Size
view_size
= view->GetPreferredSize();
local
868
if ((
view_size
.width() + padding) > available_width)
869
view_size
= view->GetMinimumSize();
870
int desired_width =
view_size
.width() + padding;
874
leading ? bounds->x() : (bounds->right() -
view_size
.width()),
875
view->y(),
view_size
.width(), view->height());
[
all
...]
/external/chromium/chrome/browser/tab_contents/
thumbnail_generator_unittest.cc
65
params.
view_size
= params.bitmap_rect.size();
Completed in 242 milliseconds