/external/chromium/chrome/browser/ui/views/infobars/ |
infobar_view.cc | 57 fill_path_(new SkPath), 152 fill_path_->rewind(); 174 *fill_path_ = *stroke_path_; 177 fill_path_->offset(0, -separator_height * SK_ScalarHalf); 181 fill_path_->rLineTo(-epsilon, 0); 182 fill_path_->rLineTo(0, separator_height); 183 fill_path_->rLineTo(epsilon - (arrow_fill_half_width * 2), 0); 184 fill_path_->close(); 188 fill_path_->addRect(0.0, SkIntToScalar(arrow_height()), 272 // TODO(scr): This really should be the |fill_path_|, but the clipPath seem [all...] |
infobar_view.h | 37 SkPath* fill_path() const { return fill_path_.get(); } 128 scoped_ptr<SkPath> fill_path_; member in class:InfoBarView
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
infobar_view.h | 39 const SkPath& fill_path() const { return fill_path_; } 124 SkPath fill_path_; member in class:InfoBarView
|
infobar_view.cc | 161 fill_path_.rewind(); 183 fill_path_ = stroke_path_; 186 fill_path_.offset(0, -separator_height * SK_ScalarHalf); 190 fill_path_.rLineTo(-epsilon, 0); 191 fill_path_.rLineTo(0, separator_height); 192 fill_path_.rLineTo(epsilon - (arrow_fill_half_width * 2), 0); 193 fill_path_.close(); 197 fill_path_.addRect(0.0, SkIntToScalar(arrow_height()), 259 // TODO(scr): This really should be the |fill_path_|, but the clipPath seems 263 // canvas->sk_canvas()->clipPath(fill_path_); [all...] |