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

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

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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) 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/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/callback.h"
8 #include "base/file_util.h" 9 #include "base/file_util.h"
9 #include "base/task.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "chrome/browser/extensions/file_manager_util.h" 11 #include "chrome/browser/extensions/file_manager_util.h"
12 #include "chrome/browser/tabs/tab_strip_model.h" 12 #include "chrome/browser/tabs/tab_strip_model.h"
13 #include "chrome/browser/ui/browser.h" 13 #include "chrome/browser/ui/browser.h"
14 #include "chrome/browser/ui/browser_list.h" 14 #include "chrome/browser/ui/browser_list.h"
15 #include "content/public/browser/browser_thread.h" 15 #include "content/public/browser/browser_thread.h"
16 #include "googleurl/src/gurl.h" 16 #include "googleurl/src/gurl.h"
17 17
18 using content::BrowserThread; 18 using content::BrowserThread;
19 19
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void OpenExternal(const GURL& url) { 87 void OpenExternal(const GURL& url) {
88 if (url.SchemeIs("mailto")) { 88 if (url.SchemeIs("mailto")) {
89 std::string string_url = kGmailComposeUrl; 89 std::string string_url = kGmailComposeUrl;
90 string_url.append(url.spec()); 90 string_url.append(url.spec());
91 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, 91 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
92 base::Bind(OpenURL, string_url)); 92 base::Bind(OpenURL, string_url));
93 } 93 }
94 } 94 }
95 95
96 } // namespace platform_util 96 } // namespace platform_util
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.cc ('k') | chrome/browser/prerender/prerender_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698