| OLD | NEW | 
|   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/file_util.h" |   8 #include "base/file_util.h" | 
|   9 #include "base/process_util.h" |  | 
|  10 #include "base/task.h" |   9 #include "base/task.h" | 
|  11 #include "base/utf_string_conversions.h" |  10 #include "base/utf_string_conversions.h" | 
|  12 #include "chrome/browser/extensions/file_manager_util.h" |  11 #include "chrome/browser/extensions/file_manager_util.h" | 
|  13 #include "chrome/browser/tabs/tab_strip_model.h" |  12 #include "chrome/browser/tabs/tab_strip_model.h" | 
|  14 #include "chrome/browser/ui/browser.h" |  13 #include "chrome/browser/ui/browser.h" | 
|  15 #include "chrome/browser/ui/browser_list.h" |  14 #include "chrome/browser/ui/browser_list.h" | 
|  16 #include "content/common/process_watcher.h" |  | 
|  17 #include "content/public/browser/browser_thread.h" |  15 #include "content/public/browser/browser_thread.h" | 
|  18 #include "googleurl/src/gurl.h" |  16 #include "googleurl/src/gurl.h" | 
|  19  |  17  | 
|  20 using content::BrowserThread; |  18 using content::BrowserThread; | 
|  21  |  19  | 
|  22 class Profile; |  20 class Profile; | 
|  23  |  21  | 
|  24 namespace { |  22 namespace { | 
|  25  |  23  | 
|  26 const char kGmailComposeUrl[] = |  24 const char kGmailComposeUrl[] = | 
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  89 void OpenExternal(const GURL& url) { |  87 void OpenExternal(const GURL& url) { | 
|  90   if (url.SchemeIs("mailto")) { |  88   if (url.SchemeIs("mailto")) { | 
|  91     std::string string_url = kGmailComposeUrl; |  89     std::string string_url = kGmailComposeUrl; | 
|  92     string_url.append(url.spec()); |  90     string_url.append(url.spec()); | 
|  93     BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, |  91     BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | 
|  94                             base::Bind(OpenURL, string_url)); |  92                             base::Bind(OpenURL, string_url)); | 
|  95   } |  93   } | 
|  96 } |  94 } | 
|  97  |  95  | 
|  98 }  // namespace platform_util |  96 }  // namespace platform_util | 
| OLD | NEW |