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

Unified Diff: chrome/browser/ssl/ssl_error_handler.h

Issue 345037: Fifth patch in getting rid of caching MessageLoop pointers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ssl/ssl_error_handler.h
===================================================================
--- chrome/browser/ssl/ssl_error_handler.h (revision 30691)
+++ chrome/browser/ssl/ssl_error_handler.h (working copy)
@@ -15,7 +15,6 @@
#include "googleurl/src/gurl.h"
#include "webkit/glue/resource_type.h"
-class MessageLoop;
class SSLCertErrorHandler;
class TabContents;
class URLRequest;
@@ -99,8 +98,7 @@
URLRequest* request,
ResourceType::Type resource_type,
const std::string& frame_origin,
- const std::string& main_frame_origin,
- MessageLoop* ui_loop);
+ const std::string& main_frame_origin);
// The following 2 methods are the methods subclasses should implement.
virtual void OnDispatchFailed() { TakeNoAction(); }
@@ -108,11 +106,6 @@
// Can use the manager_ member.
virtual void OnDispatched() { TakeNoAction(); }
- // We cache the message loops to be able to proxy events across the thread
- // boundaries.
- MessageLoop* ui_loop_;
- MessageLoop* io_loop_;
-
// Should only be accessed on the UI thread.
SSLManager* manager_; // Our manager.
Property changes on: chrome\browser\ssl\ssl_error_handler.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698