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

Side by Side Diff: chrome/browser/platform_util_linux.cc

Issue 2695823008: Add missing #include around sequenced_worker_pool.h in //chrome (Closed)
Patch Set: sync_websocket_impl & wizard_controller Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/platform_util.h" 5 #include "chrome/browser/platform_util.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/process/kill.h" 10 #include "base/process/kill.h"
11 #include "base/process/launch.h" 11 #include "base/process/launch.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "base/threading/sequenced_worker_pool.h"
14 #include "base/version.h" 15 #include "base/version.h"
15 #include "chrome/browser/platform_util_internal.h" 16 #include "chrome/browser/platform_util_internal.h"
16 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
17 #include "url/gurl.h" 18 #include "url/gurl.h"
18 19
19 using content::BrowserThread; 20 using content::BrowserThread;
20 21
21 namespace platform_util { 22 namespace platform_util {
22 23
23 namespace { 24 namespace {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 168
168 void OpenExternal(Profile* profile, const GURL& url) { 169 void OpenExternal(Profile* profile, const GURL& url) {
169 DCHECK_CURRENTLY_ON(BrowserThread::UI); 170 DCHECK_CURRENTLY_ON(BrowserThread::UI);
170 if (url.SchemeIs("mailto")) 171 if (url.SchemeIs("mailto"))
171 XDGEmail(url.spec()); 172 XDGEmail(url.spec());
172 else 173 else
173 XDGOpen(base::FilePath(), url.spec()); 174 XDGOpen(base::FilePath(), url.spec());
174 } 175 }
175 176
176 } // namespace platform_util 177 } // namespace platform_util
OLDNEW
« no previous file with comments | « chrome/browser/ntp_tiles/chrome_popular_sites_factory.cc ('k') | chrome/browser/policy/cloud/test_request_interceptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698