OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BoundsSpecification
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/extensions/browser/app_window/
app_window.cc
138
// AppWindow::
BoundsSpecification
140
const int AppWindow::
BoundsSpecification
::kUnspecifiedPosition = INT_MIN;
142
AppWindow::
BoundsSpecification
::
BoundsSpecification
()
145
AppWindow::
BoundsSpecification
::~
BoundsSpecification
() {}
147
void AppWindow::
BoundsSpecification
::ResetBounds() {
175
if (content_spec.bounds.x() !=
BoundsSpecification
::kUnspecifiedPosition)
177
if (content_spec.bounds.y() !=
BoundsSpecification
::kUnspecifiedPosition)
[
all
...]
app_window.h
122
struct
BoundsSpecification
{
126
BoundsSpecification
();
127
~
BoundsSpecification
();
156
BoundsSpecification
content_spec;
160
BoundsSpecification
window_spec;
/external/chromium_org/chrome/browser/ui/views/apps/
chrome_native_app_window_views.cc
241
typedef AppWindow::
BoundsSpecification
BoundsSpecification
;
243
window_bounds.x() !=
BoundsSpecification
::kUnspecifiedPosition &&
244
window_bounds.y() !=
BoundsSpecification
::kUnspecifiedPosition;
Completed in 306 milliseconds