Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(976)

Side by Side Diff: chrome/browser/infobars/infobar_service.h

Issue 826553003: Remove dead IPC message ChromeViewHostMsg_DidBlockRunningInsecureContent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete moar code Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/infobars/infobar_service.cc » ('j') | chrome/browser/infobars/insecure_content_infobar_delegate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698