| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ |
| 6 #define CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ | 6 #define CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 void DidStartNavigationToPendingEntry( | 69 void DidStartNavigationToPendingEntry( |
| 70 const GURL& url, | 70 const GURL& url, |
| 71 content::NavigationController::ReloadType reload_type) override; | 71 content::NavigationController::ReloadType reload_type) override; |
| 72 void NavigationEntryCommitted( | 72 void NavigationEntryCommitted( |
| 73 const content::LoadCommittedDetails& load_details) override; | 73 const content::LoadCommittedDetails& load_details) override; |
| 74 void WebContentsDestroyed() override; | 74 void WebContentsDestroyed() override; |
| 75 bool OnMessageReceived(const IPC::Message& message) override; | 75 bool OnMessageReceived(const IPC::Message& message) override; |
| 76 | 76 |
| 77 // Message handlers. | 77 // Message handlers. |
| 78 void OnDidBlockDisplayingInsecureContent(); | 78 void OnDidBlockDisplayingInsecureContent(); |
| 79 void OnDidBlockRunningInsecureContent(); | |
| 80 | 79 |
| 81 // See description in set_ignore_next_reload(). | 80 // See description in set_ignore_next_reload(). |
| 82 bool ignore_next_reload_; | 81 bool ignore_next_reload_; |
| 83 | 82 |
| 84 DISALLOW_COPY_AND_ASSIGN(InfoBarService); | 83 DISALLOW_COPY_AND_ASSIGN(InfoBarService); |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ | 86 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ |
| OLD | NEW |