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

Side by Side Diff: content/browser/devtools/devtools_manager_unittest.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/basictypes.h"
6 #include "base/location.h" 5 #include "base/location.h"
6 #include "base/macros.h"
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "base/thread_task_runner_handle.h" 9 #include "base/thread_task_runner_handle.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 #include "content/browser/devtools/devtools_manager.h" 11 #include "content/browser/devtools/devtools_manager.h"
12 #include "content/browser/devtools/shared_worker_devtools_manager.h" 12 #include "content/browser/devtools/shared_worker_devtools_manager.h"
13 #include "content/browser/shared_worker/shared_worker_instance.h" 13 #include "content/browser/shared_worker/shared_worker_instance.h"
14 #include "content/browser/shared_worker/worker_storage_partition.h" 14 #include "content/browser/shared_worker/worker_storage_partition.h"
15 #include "content/common/view_messages.h" 15 #include "content/common/view_messages.h"
16 #include "content/public/browser/browser_context.h" 16 #include "content/public/browser/browser_context.h"
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 TestDevToolsClientHost client_host; 246 TestDevToolsClientHost client_host;
247 client_host.InspectAgentHost(agent_host.get()); 247 client_host.InspectAgentHost(agent_host.get());
248 agent_host->DispatchProtocolMessage("message1"); 248 agent_host->DispatchProtocolMessage("message1");
249 agent_host->DispatchProtocolMessage("message2"); 249 agent_host->DispatchProtocolMessage("message2");
250 agent_host->DispatchProtocolMessage("message2"); 250 agent_host->DispatchProtocolMessage("message2");
251 251
252 client_host.Close(); 252 client_host.Close();
253 } 253 }
254 254
255 } // namespace content 255 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_manager.h ('k') | content/browser/devtools/devtools_netlog_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698