summaryrefslogtreecommitdiffstats
path: root/android_webview/native
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2016-03-10 21:40:47 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-11 05:42:48 +0000
commit9502adfa9aa5b3f3a7b06bbd23503ced64387df2 (patch)
tree9c6cae3f941dca306088ea823e1c0a70587d9086 /android_webview/native
parent1311fa86d61376ad6f35b733cfa0c3f7bbae28ad (diff)
downloadchromium_src-9502adfa9aa5b3f3a7b06bbd23503ced64387df2.zip
chromium_src-9502adfa9aa5b3f3a7b06bbd23503ced64387df2.tar.gz
chromium_src-9502adfa9aa5b3f3a7b06bbd23503ced64387df2.tar.bz2
Change scoped_ptr to a type alias for std::unique_ptr for OS_ANDROID
BUG=554298,579269 R=danakj@chromium.org TBR=qinmin@chromium.org,torne@chromium.org,yfriedman@chromium.org Review URL: https://codereview.chromium.org/1782443008 Cr-Commit-Position: refs/heads/master@{#380543}
Diffstat (limited to 'android_webview/native')
-rw-r--r--android_webview/native/aw_dev_tools_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/native/aw_dev_tools_server.cc b/android_webview/native/aw_dev_tools_server.cc
index 7e6cb59..9d1a83f 100644
--- a/android_webview/native/aw_dev_tools_server.cc
+++ b/android_webview/native/aw_dev_tools_server.cc
@@ -156,7 +156,7 @@ void AwDevToolsServer::Stop() {
}
bool AwDevToolsServer::IsStarted() const {
- return devtools_http_handler_;
+ return !!devtools_http_handler_;
}
bool RegisterAwDevToolsServer(JNIEnv* env) {