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

Side by Side Diff: content/browser/service_worker/service_worker_browsertest.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "content/public/common/referrer.h" 56 #include "content/public/common/referrer.h"
57 #include "content/public/common/resource_type.h" 57 #include "content/public/common/resource_type.h"
58 #include "content/public/common/security_style.h" 58 #include "content/public/common/security_style.h"
59 #include "content/public/common/web_preferences.h" 59 #include "content/public/common/web_preferences.h"
60 #include "content/public/test/browser_test_utils.h" 60 #include "content/public/test/browser_test_utils.h"
61 #include "content/public/test/content_browser_test.h" 61 #include "content/public/test/content_browser_test.h"
62 #include "content/public/test/content_browser_test_utils.h" 62 #include "content/public/test/content_browser_test_utils.h"
63 #include "content/shell/browser/shell.h" 63 #include "content/shell/browser/shell.h"
64 #include "content/shell/browser/shell_content_browser_client.h" 64 #include "content/shell/browser/shell_content_browser_client.h"
65 #include "content/test/test_content_browser_client.h" 65 #include "content/test/test_content_browser_client.h"
66 #include "net/log/net_log.h" 66 #include "net/log/net_log_with_source.h"
67 #include "net/test/embedded_test_server/embedded_test_server.h" 67 #include "net/test/embedded_test_server/embedded_test_server.h"
68 #include "net/test/embedded_test_server/http_request.h" 68 #include "net/test/embedded_test_server/http_request.h"
69 #include "net/test/embedded_test_server/http_response.h" 69 #include "net/test/embedded_test_server/http_response.h"
70 #include "net/url_request/url_request_filter.h" 70 #include "net/url_request/url_request_filter.h"
71 #include "net/url_request/url_request_interceptor.h" 71 #include "net/url_request/url_request_interceptor.h"
72 #include "net/url_request/url_request_test_job.h" 72 #include "net/url_request/url_request_test_job.h"
73 #include "storage/browser/blob/blob_data_handle.h" 73 #include "storage/browser/blob/blob_data_handle.h"
74 #include "storage/browser/blob/blob_data_snapshot.h" 74 #include "storage/browser/blob/blob_data_snapshot.h"
75 #include "storage/browser/blob/blob_reader.h" 75 #include "storage/browser/blob/blob_reader.h"
76 #include "storage/browser/blob/blob_storage_context.h" 76 #include "storage/browser/blob/blob_storage_context.h"
(...skipping 1948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2025 2025
2026 IN_PROC_BROWSER_TEST_F(ServiceWorkerDisableWebSecurityTest, UpdateNoCrash) { 2026 IN_PROC_BROWSER_TEST_F(ServiceWorkerDisableWebSecurityTest, UpdateNoCrash) {
2027 const char kPageUrl[] = "/service_worker/disable_web_security_update.html"; 2027 const char kPageUrl[] = "/service_worker/disable_web_security_update.html";
2028 const char kScopeUrl[] = "/service_worker/scope/"; 2028 const char kScopeUrl[] = "/service_worker/scope/";
2029 const char kWorkerUrl[] = "/service_worker/fetch_event_blob.js"; 2029 const char kWorkerUrl[] = "/service_worker/fetch_event_blob.js";
2030 RegisterServiceWorkerOnCrossOriginServer(kScopeUrl, kWorkerUrl); 2030 RegisterServiceWorkerOnCrossOriginServer(kScopeUrl, kWorkerUrl);
2031 RunTestWithCrossOriginURL(kPageUrl, kScopeUrl); 2031 RunTestWithCrossOriginURL(kPageUrl, kScopeUrl);
2032 } 2032 }
2033 2033
2034 } // namespace content 2034 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698