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

Unified Diff: chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc

Issue 2711223003: [tab_capture] Change LOG(DFATAL) to LOG(WARNING) if fail to find new parents for offscreen tab. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc
diff --git a/chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc b/chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc
index c415de6e71da2bf9da465f097dead6b1fa25b302..a42bf6c32ee95b705d59f7bf6d6b43999074cc1b 100644
--- a/chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc
+++ b/chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc
@@ -106,8 +106,8 @@ class WindowAdoptionAgent : protected aura::WindowObserver {
<< " adopts the content window " << content_window_ << '.';
root_window->AddChild(content_window_);
miu 2017/02/24 22:51:55 Some work has been done in content::DelegatedFrame
zhaobin 2017/02/25 00:30:44 browser_tests passed if comment out this LOC. But
} else {
- LOG(DFATAL) << "Unable to find an aura root window. "
- "Compositing of the content may be halted!";
+ LOG(WARNING) << "Unable to find an aura root window. "
+ "Compositing of the content may be halted!";
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698