diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 00:05:49 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 00:05:49 +0000 |
commit | e2cf91ffd98367e980b676ebae6d041c24cd174a (patch) | |
tree | 71bf363faf0dcfe0d3e04969329a3d427ca5cb6f | |
parent | ce52e85528d54ce91c3b155f2751895f34dc1ea3 (diff) | |
download | chromium_src-e2cf91ffd98367e980b676ebae6d041c24cd174a.zip chromium_src-e2cf91ffd98367e980b676ebae6d041c24cd174a.tar.gz chromium_src-e2cf91ffd98367e980b676ebae6d041c24cd174a.tar.bz2 |
Fixed mixed EOLs and set svn EOL prop for interstitial_page.[h,cc]
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/14819
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7186 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/interstitial_page.cc | 8 | ||||
-rw-r--r-- | chrome/browser/interstitial_page.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/interstitial_page.cc b/chrome/browser/interstitial_page.cc index 5cbc37e..e400730 100644 --- a/chrome/browser/interstitial_page.cc +++ b/chrome/browser/interstitial_page.cc @@ -75,9 +75,9 @@ void InterstitialPage::Observe(NotificationType type, CommandReceived(json); } -void InterstitialPage::InterstitialClosed() {
- delete this;
-}
+void InterstitialPage::InterstitialClosed() { + delete this; +} void InterstitialPage::Proceed() { DCHECK(tab_->type() == TAB_CONTENTS_WEB); @@ -113,4 +113,4 @@ InterstitialPage* InterstitialPage::GetInterstitialPage( return NULL; return iter->second; -}
+} diff --git a/chrome/browser/interstitial_page.h b/chrome/browser/interstitial_page.h index ce17818..fae6723 100644 --- a/chrome/browser/interstitial_page.h +++ b/chrome/browser/interstitial_page.h @@ -40,9 +40,9 @@ class InterstitialPage : public NotificationObserver { // Shows the interstitial page in the tab. void Show(); - // Invoked by the tab showing the interstitial to notify that the interstitial
- // page was closed.
- virtual void InterstitialClosed();
+ // Invoked by the tab showing the interstitial to notify that the interstitial + // page was closed. + virtual void InterstitialClosed(); // Retrieves the InterstitialPage if any associated with the specified // |tab_contents| (used by ui tests). @@ -115,4 +115,4 @@ class InterstitialPage : public NotificationObserver { }; #endif // #ifndef CHROME_BROWSER_INTERSTITIAL_PAGE_H_ -
+ |