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

Side by Side Diff: chrome/common/security_filter_peer.h

Issue 21039: Revert my change to get the tree green. Not sure why the tests became flaky.... (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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/resource_dispatcher_unittest.cc ('k') | chrome/common/temp_scaffolding_stubs.h » ('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 5
6 #ifndef CHROME_COMMON_SECURITY_FILTER_PEER_H__ 6 #ifndef CHROME_COMMON_SECURITY_FILTER_PEER_H__
7 #define CHROME_COMMON_SECURITY_FILTER_PEER_H__ 7 #define CHROME_COMMON_SECURITY_FILTER_PEER_H__
8 8
9 #include "chrome/common/filter_policy.h" 9 #include "chrome/common/render_messages.h"
10 #include "webkit/glue/resource_loader_bridge.h" 10 #include "webkit/glue/resource_loader_bridge.h"
11 11
12 // The SecurityFilterPeer is a proxy to a 12 // The SecurityFilterPeer is a proxy to a
13 // webkit_glue::ResourceLoaderBridge::Peer instance. It is used to pre-process 13 // webkit_glue::ResourceLoaderBridge::Peer instance. It is used to pre-process
14 // unsafe resources (such as mixed-content resource). 14 // unsafe resources (such as mixed-content resource).
15 // Call the factory method CreateSecurityFilterPeer() to obtain an instance of 15 // Call the factory method CreateSecurityFilterPeer() to obtain an instance of
16 // SecurityFilterPeer based on the original Peer. 16 // SecurityFilterPeer based on the original Peer.
17 // NOTE: subclasses should insure they delete themselves at the end of the 17 // NOTE: subclasses should insure they delete themselves at the end of the
18 // OnReceiveComplete call. 18 // OnReceiveComplete call.
19 class SecurityFilterPeer : public webkit_glue::ResourceLoaderBridge::Peer { 19 class SecurityFilterPeer : public webkit_glue::ResourceLoaderBridge::Peer {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 protected: 128 protected:
129 virtual bool DataReady(); 129 virtual bool DataReady();
130 130
131 private: 131 private:
132 DISALLOW_EVIL_CONSTRUCTORS(ImageFilterPeer); 132 DISALLOW_EVIL_CONSTRUCTORS(ImageFilterPeer);
133 }; 133 };
134 134
135 #endif // CHROME_COMMON_SECURITY_FILTER_PEER_H__ 135 #endif // CHROME_COMMON_SECURITY_FILTER_PEER_H__
136 136
OLDNEW
« no previous file with comments | « chrome/common/resource_dispatcher_unittest.cc ('k') | chrome/common/temp_scaffolding_stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698