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

Side by Side Diff: chrome/browser/android/ntp/ntp_snippets_launcher.cc

Issue 2733283002: Require explicit selection of traits for LazyInstance (Closed)
Patch Set: l10n again Created 3 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/android/ntp/ntp_snippets_launcher.h" 5 #include "chrome/browser/android/ntp/ntp_snippets_launcher.h"
6 6
7 #include "base/android/context_utils.h" 7 #include "base/android/context_utils.h"
8 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
9 #include "jni/SnippetsLauncher_jni.h" 9 #include "jni/SnippetsLauncher_jni.h"
10 10
11 using content::BrowserThread; 11 using content::BrowserThread;
12 12
13 namespace { 13 namespace {
14 14
15 base::LazyInstance<NTPSnippetsLauncher> g_snippets_launcher = 15 base::LazyInstance<NTPSnippetsLauncher>::DestructorAtExit g_snippets_launcher =
16 LAZY_INSTANCE_INITIALIZER; 16 LAZY_INSTANCE_INITIALIZER;
17 17
18 } // namespace 18 } // namespace
19 19
20 // static 20 // static
21 NTPSnippetsLauncher* NTPSnippetsLauncher::Get() { 21 NTPSnippetsLauncher* NTPSnippetsLauncher::Get() {
22 DCHECK_CURRENTLY_ON(BrowserThread::UI); 22 DCHECK_CURRENTLY_ON(BrowserThread::UI);
23 return g_snippets_launcher.Pointer(); 23 return g_snippets_launcher.Pointer();
24 } 24 }
25 25
(...skipping 22 matching lines...) Expand all
48 env, base::android::GetApplicationContext())); 48 env, base::android::GetApplicationContext()));
49 } 49 }
50 50
51 NTPSnippetsLauncher::~NTPSnippetsLauncher() { 51 NTPSnippetsLauncher::~NTPSnippetsLauncher() {
52 DCHECK_CURRENTLY_ON(BrowserThread::UI); 52 DCHECK_CURRENTLY_ON(BrowserThread::UI);
53 53
54 JNIEnv* env = base::android::AttachCurrentThread(); 54 JNIEnv* env = base::android::AttachCurrentThread();
55 Java_SnippetsLauncher_destroy(env, java_launcher_); 55 Java_SnippetsLauncher_destroy(env, java_launcher_);
56 java_launcher_.Reset(); 56 java_launcher_.Reset();
57 } 57 }
OLDNEW
« no previous file with comments | « chrome/browser/android/ntp/ntp_snippets_launcher.h ('k') | chrome/browser/android/webapps/single_tab_mode_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698