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

Side by Side Diff: chrome/browser/banners/app_banner_debug_log.h

Issue 1129103003: Log messages regarding why app banners aren't displayed to the console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Factoring out debug log message function Created 5 years, 7 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_DEBUG_LOG_H_
6 #define CHROME_BROWSER_BANNERS_APP_BANNER_DEBUG_LOG_H_
7
8 #include <string>
9
10 namespace content {
11 class WebContents;
12 } // namespace content
13
14 namespace banners {
benwells 2015/05/11 08:08:40 Since we have a shiny new file (yay!) it would be
dominickn (DO NOT USE) 2015/05/12 07:41:31 Done.
15
16 // Logs a debug message to the main console if a banner could not be shown
17 // and the engagement checks have been bypassed.
18 void SendDebugMessage(content::WebContents* web_contents,
19 const std::string& message);
20
21 }; // namespace banners
22
23 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_DEBUG_LOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698