Chromium Code Reviews

Side by Side Diff: chrome/browser/tab_contents/interstitial_page.h

Issue 20015: Make it easier to create new IPC channel types (i.e. renderer/plugin). Inste... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ssl/ssl_uitest.cc ('k') | chrome/browser/tab_contents/ipc_status_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/gfx/size.h"
10 #include "chrome/browser/renderer_host/render_view_host_delegate.h" 11 #include "chrome/browser/renderer_host/render_view_host_delegate.h"
11 #include "chrome/common/notification_registrar.h" 12 #include "chrome/common/notification_registrar.h"
12 #include "googleurl/src/gurl.h" 13 #include "googleurl/src/gurl.h"
13 14
14 class NavigationEntry; 15 class NavigationEntry;
15 class WebContents; 16 class WebContents;
16 17
17 // This class is a base class for interstitial pages, pages that show some 18 // This class is a base class for interstitial pages, pages that show some
18 // informative message asking for user validation before reaching the target 19 // informative message asking for user validation before reaching the target
19 // page. (Navigating to a page served over bad HTTPS or a page containing 20 // page. (Navigating to a page served over bad HTTPS or a page containing
(...skipping 151 matching lines...)
171 // We keep a map of the various blocking pages shown as the UI tests need to 172 // We keep a map of the various blocking pages shown as the UI tests need to
172 // be able to retrieve them. 173 // be able to retrieve them.
173 typedef std::map<WebContents*,InterstitialPage*> InterstitialPageMap; 174 typedef std::map<WebContents*,InterstitialPage*> InterstitialPageMap;
174 static InterstitialPageMap* tab_to_interstitial_page_; 175 static InterstitialPageMap* tab_to_interstitial_page_;
175 176
176 DISALLOW_COPY_AND_ASSIGN(InterstitialPage); 177 DISALLOW_COPY_AND_ASSIGN(InterstitialPage);
177 }; 178 };
178 179
179 #endif // #ifndef CHROME_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ 180 #endif // #ifndef CHROME_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_
180 181
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_uitest.cc ('k') | chrome/browser/tab_contents/ipc_status_view.cc » ('j') | no next file with comments »

Powered by Google App Engine