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

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

Issue 16742003: Use a direct include of strings headers in chrome/browser/a*-c*/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/flash_component_installer.h" 5 #include "chrome/browser/component_updater/flash_component_installer.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/base_paths.h" 11 #include "base/base_paths.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/file_util.h" 15 #include "base/file_util.h"
16 #include "base/files/file_enumerator.h" 16 #include "base/files/file_enumerator.h"
17 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/path_service.h" 19 #include "base/path_service.h"
20 #include "base/string_util.h"
21 #include "base/stringprintf.h"
22 #include "base/strings/string_split.h" 20 #include "base/strings/string_split.h"
21 #include "base/strings/string_util.h"
22 #include "base/strings/stringprintf.h"
23 #include "base/strings/utf_string_conversions.h" 23 #include "base/strings/utf_string_conversions.h"
24 #include "base/values.h" 24 #include "base/values.h"
25 #include "base/version.h" 25 #include "base/version.h"
26 #include "build/build_config.h" 26 #include "build/build_config.h"
27 #include "chrome/browser/component_updater/component_updater_service.h" 27 #include "chrome/browser/component_updater/component_updater_service.h"
28 #include "chrome/browser/plugins/plugin_prefs.h" 28 #include "chrome/browser/plugins/plugin_prefs.h"
29 #include "chrome/common/chrome_constants.h" 29 #include "chrome/common/chrome_constants.h"
30 #include "chrome/common/chrome_paths.h" 30 #include "chrome/common/chrome_paths.h"
31 #include "chrome/common/chrome_switches.h" 31 #include "chrome/common/chrome_switches.h"
32 #include "chrome/common/pepper_flash.h" 32 #include "chrome/common/pepper_flash.h"
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_LINUX) 388 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_LINUX)
389 // Component updated flash supersedes bundled flash therefore if that one 389 // Component updated flash supersedes bundled flash therefore if that one
390 // is disabled then this one should never install. 390 // is disabled then this one should never install.
391 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); 391 CommandLine* cmd_line = CommandLine::ForCurrentProcess();
392 if (cmd_line->HasSwitch(switches::kDisableBundledPpapiFlash)) 392 if (cmd_line->HasSwitch(switches::kDisableBundledPpapiFlash))
393 return; 393 return;
394 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, 394 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
395 base::Bind(&StartPepperFlashUpdateRegistration, cus)); 395 base::Bind(&StartPepperFlashUpdateRegistration, cus));
396 #endif 396 #endif
397 } 397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698