Move atom_url_request_job_factory to browser/net.
This commit is contained in:
parent
2000f88c84
commit
7df256f8dc
5 changed files with 8 additions and 8 deletions
4
atom.gyp
4
atom.gyp
|
@ -61,8 +61,6 @@
|
||||||
'browser/api/atom_api_window.h',
|
'browser/api/atom_api_window.h',
|
||||||
'browser/api/atom_browser_bindings.cc',
|
'browser/api/atom_browser_bindings.cc',
|
||||||
'browser/api/atom_browser_bindings.h',
|
'browser/api/atom_browser_bindings.h',
|
||||||
'browser/atom_url_request_job_factory.cc',
|
|
||||||
'browser/atom_url_request_job_factory.h',
|
|
||||||
'browser/auto_updater.cc',
|
'browser/auto_updater.cc',
|
||||||
'browser/auto_updater.h',
|
'browser/auto_updater.h',
|
||||||
'browser/auto_updater_delegate.cc',
|
'browser/auto_updater_delegate.cc',
|
||||||
|
@ -99,6 +97,8 @@
|
||||||
'browser/native_window_win.cc',
|
'browser/native_window_win.cc',
|
||||||
'browser/native_window_win.h',
|
'browser/native_window_win.h',
|
||||||
'browser/native_window_observer.h',
|
'browser/native_window_observer.h',
|
||||||
|
'browser/net/atom_url_request_job_factory.cc',
|
||||||
|
'browser/net/atom_url_request_job_factory.h',
|
||||||
'browser/ui/accelerator_util.cc',
|
'browser/ui/accelerator_util.cc',
|
||||||
'browser/ui/accelerator_util.h',
|
'browser/ui/accelerator_util.h',
|
||||||
'browser/ui/accelerator_util_mac.mm',
|
'browser/ui/accelerator_util_mac.mm',
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
#include "base/memory/weak_ptr.h"
|
#include "base/memory/weak_ptr.h"
|
||||||
#include "browser/atom_browser_context.h"
|
#include "browser/atom_browser_context.h"
|
||||||
#include "browser/atom_url_request_job_factory.h"
|
#include "browser/net/atom_url_request_job_factory.h"
|
||||||
#include "content/public/browser/browser_thread.h"
|
#include "content/public/browser/browser_thread.h"
|
||||||
#include "net/url_request/url_request_context.h"
|
#include "net/url_request/url_request_context.h"
|
||||||
#include "net/url_request/url_request_context_getter.h"
|
#include "net/url_request/url_request_context_getter.h"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "browser/atom_browser_client.h"
|
#include "browser/atom_browser_client.h"
|
||||||
|
|
||||||
#include "browser/atom_browser_main_parts.h"
|
#include "browser/atom_browser_main_parts.h"
|
||||||
#include "browser/atom_url_request_job_factory.h"
|
#include "browser/net/atom_url_request_job_factory.h"
|
||||||
#include "content/public/common/url_constants.h"
|
#include "content/public/common/url_constants.h"
|
||||||
#include "net/url_request/data_protocol_handler.h"
|
#include "net/url_request/data_protocol_handler.h"
|
||||||
#include "net/url_request/file_protocol_handler.h"
|
#include "net/url_request/file_protocol_handler.h"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
#include "browser/atom_url_request_job_factory.h"
|
#include "browser/net/atom_url_request_job_factory.h"
|
||||||
|
|
||||||
#include "base/stl_util.h"
|
#include "base/stl_util.h"
|
||||||
#include "googleurl/src/gurl.h"
|
#include "googleurl/src/gurl.h"
|
|
@ -3,8 +3,8 @@
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
#ifndef ATOM_BROWSER_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
#ifndef ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
||||||
#define ATOM_BROWSER_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
#define ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -44,4 +44,4 @@ class AtomURLRequestJobFactory : public net::URLRequestJobFactory {
|
||||||
|
|
||||||
} // namespace atom
|
} // namespace atom
|
||||||
|
|
||||||
#endif // ATOM_BROWSER_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
#endif // ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
|
Loading…
Reference in a new issue