OLD | NEW |
---|---|
(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_ | |
OLD | NEW |