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

Side by Side Diff: extensions/browser/load_monitoring_extension_host_queue_unittest.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 2015 The Chromium Authors. All rights reserved. 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 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 <stddef.h>
6
5 #include <limits> 7 #include <limits>
6 #include <vector> 8 #include <vector>
7 9
8 #include "base/bind.h" 10 #include "base/bind.h"
9 #include "base/run_loop.h" 11 #include "base/run_loop.h"
10 #include "content/public/test/test_browser_thread_bundle.h" 12 #include "content/public/test/test_browser_thread_bundle.h"
11 #include "extensions/browser/deferred_start_render_host.h" 13 #include "extensions/browser/deferred_start_render_host.h"
12 #include "extensions/browser/extensions_test.h" 14 #include "extensions/browser/extensions_test.h"
13 #include "extensions/browser/load_monitoring_extension_host_queue.h" 15 #include "extensions/browser/load_monitoring_extension_host_queue.h"
14 #include "extensions/browser/serial_extension_host_queue.h" 16 #include "extensions/browser/serial_extension_host_queue.h"
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 queue()->Remove(host3); 346 queue()->Remove(host3);
345 queue()->Remove(host4); 347 queue()->Remove(host4);
346 348
347 EXPECT_FALSE(host1->IsObservedBy(queue())); 349 EXPECT_FALSE(host1->IsObservedBy(queue()));
348 EXPECT_FALSE(host2->IsObservedBy(queue())); 350 EXPECT_FALSE(host2->IsObservedBy(queue()));
349 EXPECT_FALSE(host3->IsObservedBy(queue())); 351 EXPECT_FALSE(host3->IsObservedBy(queue()));
350 EXPECT_FALSE(host4->IsObservedBy(queue())); 352 EXPECT_FALSE(host4->IsObservedBy(queue()));
351 } 353 }
352 354
353 } // namespace extensions 355 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/load_monitoring_extension_host_queue.h ('k') | extensions/browser/management_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698