forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move fetching logic out of ApplicationManager, eliminate url mappings.
BUG= Review URL: https://codereview.chromium.org/1342503003 Cr-Commit-Position: refs/heads/master@{#348659}
- Loading branch information
ben
authored and
Commit bot
committed
Sep 14, 2015
1 parent
4717575
commit 7134773
Showing
48 changed files
with
635 additions
and
938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 2015 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | ||
|
||
source_set("fetcher") { | ||
sources = [ | ||
"about_fetcher.cc", | ||
"about_fetcher.h", | ||
"base_application_fetcher.cc", | ||
"base_application_fetcher.h", | ||
"local_fetcher.cc", | ||
"local_fetcher.h", | ||
"network_fetcher.cc", | ||
"network_fetcher.h", | ||
"switches.cc", | ||
"switches.h", | ||
"update_fetcher.cc", | ||
"update_fetcher.h", | ||
"url_resolver.cc", | ||
"url_resolver.h", | ||
] | ||
|
||
public_deps = [ | ||
"//base", | ||
"//mojo/application/public/interfaces", | ||
"//mojo/common", | ||
"//third_party/mojo/src/mojo/public/cpp/bindings", | ||
"//mojo/services/network/public/interfaces", | ||
"//mojo/services/updater", | ||
"//url", | ||
] | ||
deps = [ | ||
"//base/third_party/dynamic_annotations", | ||
"//crypto:crypto", | ||
"//mojo/application/public/cpp:sources", | ||
"//url", | ||
"//third_party/mojo/src/mojo/edk/system", | ||
"//mojo/environment:chromium", | ||
"//mojo/util:filename_util", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
include_rules = [ | ||
"+crypto", | ||
"-mojo/runner", | ||
] | ||
|
||
specific_include_rules = { | ||
"about_fetcher_unittest.cc": [ | ||
"+mojo/runner/context.h" | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.