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

Side by Side Diff: chrome/browser/component_updater/component_updater_configurator.cc

Issue 7604023: Deploy win flapper via component updater (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « no previous file | chrome/browser/component_updater/pepper_flash_component_installer.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/component_updater/component_updater_service.h" 5 #include "chrome/browser/component_updater/component_updater_service.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 size_t ChromeConfigurator::UrlSizeLimit() { 87 size_t ChromeConfigurator::UrlSizeLimit() {
88 return 1024ul; 88 return 1024ul;
89 } 89 }
90 90
91 net::URLRequestContextGetter* ChromeConfigurator::RequestContext() { 91 net::URLRequestContextGetter* ChromeConfigurator::RequestContext() {
92 return url_request_getter_; 92 return url_request_getter_;
93 } 93 }
94 94
95 bool ChromeConfigurator::InProcess() { 95 bool ChromeConfigurator::InProcess() {
96 return out_of_process_; 96 return !out_of_process_;
97 } 97 }
98 98
99 ComponentUpdateService::Configurator* MakeChromeComponentUpdaterConfigurator( 99 ComponentUpdateService::Configurator* MakeChromeComponentUpdaterConfigurator(
100 const CommandLine* cmdline, net::URLRequestContextGetter* context_getter) { 100 const CommandLine* cmdline, net::URLRequestContextGetter* context_getter) {
101 return new ChromeConfigurator(cmdline, context_getter); 101 return new ChromeConfigurator(cmdline, context_getter);
102 } 102 }
103 103
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/component_updater/pepper_flash_component_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698