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

Side by Side Diff: net/url_request/url_request_about_job.cc

Issue 43079: NO CODE CHANGE (Closed)
Patch Set: Created 11 years, 9 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
« no previous file with comments | « net/url_request/url_request_about_job.h ('k') | net/url_request/url_request_error_job.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 // Simple implementation of about: protocol handler that treats everything as 5 // Simple implementation of about: protocol handler that treats everything as
6 // about:blank. No other about: features should be available to web content, 6 // about:blank. No other about: features should be available to web content,
7 // so they're not implemented here. 7 // so they're not implemented here.
8 8
9 #include "net/url_request/url_request_about_job.h" 9 #include "net/url_request/url_request_about_job.h"
10 10
(...skipping 17 matching lines...) Expand all
28 } 28 }
29 29
30 bool URLRequestAboutJob::GetMimeType(std::string* mime_type) const { 30 bool URLRequestAboutJob::GetMimeType(std::string* mime_type) const {
31 *mime_type = "text/html"; 31 *mime_type = "text/html";
32 return true; 32 return true;
33 } 33 }
34 34
35 void URLRequestAboutJob::StartAsync() { 35 void URLRequestAboutJob::StartAsync() {
36 NotifyHeadersComplete(); 36 NotifyHeadersComplete();
37 } 37 }
38
OLDNEW
« no previous file with comments | « net/url_request/url_request_about_job.h ('k') | net/url_request/url_request_error_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698