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

Side by Side Diff: webkit/tools/test_shell/test_worker/test_worker_main.cc

Issue 164421: Add |#undef LOG| to code that may see WebKit's and Chromium's LOGs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "config.h" 5 #include "config.h"
darin (slow to review) 2009/08/12 21:47:21 can we remove config.h instead?
6 6
7 #undef LOG
8
7 #include "base/at_exit.h" 9 #include "base/at_exit.h"
8 #include "base/gfx/native_widget_types.h" 10 #include "base/gfx/native_widget_types.h"
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/path_service.h" 12 #include "base/path_service.h"
11 #include "base/scoped_ptr.h" 13 #include "base/scoped_ptr.h"
12 #include "base/string_util.h" 14 #include "base/string_util.h"
13 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
14 #include "webkit/api/public/WebKit.h" 16 #include "webkit/api/public/WebKit.h"
15 #include "webkit/api/public/WebString.h" 17 #include "webkit/api/public/WebString.h"
16 #include "webkit/glue/resource_loader_bridge.h" 18 #include "webkit/glue/resource_loader_bridge.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 bool DownloadUrl(const std::string& url, HWND caller_window) { 244 bool DownloadUrl(const std::string& url, HWND caller_window) {
243 return false; 245 return false;
244 } 246 }
245 #endif 247 #endif
246 248
247 } // namespace webkit_glue 249 } // namespace webkit_glue
248 250
249 #if defined(COMPILER_GCC) 251 #if defined(COMPILER_GCC)
250 #pragma GCC visibility pop 252 #pragma GCC visibility pop
251 #endif 253 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698