| OLD | NEW |
| 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 // Contains code for handling "about:" URLs in the renderer process. We handle | 5 // Contains code for handling "about:" URLs in the renderer process. We handle |
| 6 // most about: URLs in the browser process (see | 6 // most about: URLs in the browser process (see |
| 7 // browser/browser_about_handler.*), but test URLs like about:crash need to | 7 // browser/browser_about_handler.*), but test URLs like about:crash need to |
| 8 // happen in the renderer. | 8 // happen in the renderer. |
| 9 | 9 |
| 10 #ifndef CHROME_RENDERER_ABOUT_HANDLER_H__ | 10 #ifndef CHROME_RENDERER_ABOUT_HANDLER_H__ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 static void AboutShortHang(); | 34 static void AboutShortHang(); |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 AboutHandler(); | 37 AboutHandler(); |
| 38 ~AboutHandler(); | 38 ~AboutHandler(); |
| 39 | 39 |
| 40 DISALLOW_EVIL_CONSTRUCTORS(AboutHandler); | 40 DISALLOW_EVIL_CONSTRUCTORS(AboutHandler); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 #endif // CHROME_RENDERER_ABOUT_HANDLER_H__ | 43 #endif // CHROME_RENDERER_ABOUT_HANDLER_H__ |
| 44 | |
| OLD | NEW |