~osomon/oxide/fix-crash-popup-menu

« back to all changes in this revision

Viewing changes to shared/browser/oxide_web_view.h

  • Committer: Chris Coulson
  • Date: 2015-04-16 23:11:37 UTC
  • Revision ID: chris.coulson@canonical.com-20150416231137-gu15fh6rj1xwnjh2
Tags: BRANCH_1_7
Add LocationBarController.show(), LocationBarController.hide() and LocationBarController.animated

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
  }
249
249
  void SetLocationBarConstraints(blink::WebTopControlsState constraints);
250
250
 
 
251
  bool location_bar_animated() const { return location_bar_animated_; }
 
252
  void set_location_bar_animated(bool animated) {
 
253
    location_bar_animated_ = animated;
 
254
  }
 
255
 
 
256
  void ShowLocationBar(bool animate);
 
257
  void HideLocationBar(bool animate);
 
258
 
251
259
  void SetCanTemporarilyDisplayInsecureContent(bool allow);
252
260
  void SetCanTemporarilyRunInsecureContent(bool allow);
253
261
 
627
635
 
628
636
  int location_bar_height_pix_;
629
637
  blink::WebTopControlsState location_bar_constraints_;
 
638
  bool location_bar_animated_;
630
639
 
631
640
  base::WeakPtrFactory<WebView> weak_factory_;
632
641