Skip to content

Commit

Permalink
ios: Cleanup - remove unnecessary semicolons in WebStateObserver.
Browse files Browse the repository at this point in the history
As noted in https://codereview.chromium.org/780873002/

BUG=None
R=sdefresne@chromium.org

Review URL: https://codereview.chromium.org/797363003

Cr-Commit-Position: refs/heads/master@{#308348}
  • Loading branch information
tfarina authored and Commit bot committed Dec 15, 2014
1 parent 83fcfd3 commit e8f7320
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ios/web/public/web_state/web_state_observer.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ class WebStateObserver {
// (in the case of new navigations) or renavigated to (for back/forward
// navigations).
virtual void NavigationItemCommitted(
const LoadCommittedDetails& load_details) {};
const LoadCommittedDetails& load_details) {}

// Called when the current page is loaded.
virtual void PageLoaded() {};
virtual void PageLoaded() {}

// Called on URL hash change events.
virtual void URLHashChanged() {};
virtual void URLHashChanged() {}

// Called on history state change events.
virtual void HistoryStateChanged() {};
virtual void HistoryStateChanged() {}

// Invoked when the WebState is being destroyed. Gives subclasses a chance
// to cleanup.
Expand Down

0 comments on commit e8f7320

Please sign in to comment.