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

Side by Side Diff: chrome/test/automation/tab_proxy.h

Issue 6142009: Upating the app, ceee, chrome, ipc, media, and net directories to use the correct lock.h file. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Unified patch updating all references to the new base/synchronization/lock.h Created 9 years, 11 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 5 #ifndef CHROME_TEST_AUTOMATION_TAB_PROXY_H_
6 #define CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 6 #define CHROME_TEST_AUTOMATION_TAB_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" // NOLINT 9 #include "build/build_config.h" // NOLINT
10 10
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 425
426 // Called when tracking the first object. Used for reference counting 426 // Called when tracking the first object. Used for reference counting
427 // purposes. 427 // purposes.
428 void FirstObjectAdded(); 428 void FirstObjectAdded();
429 429
430 // Called when no longer tracking any objects. Used for reference counting 430 // Called when no longer tracking any objects. Used for reference counting
431 // purposes. 431 // purposes.
432 void LastObjectRemoved(); 432 void LastObjectRemoved();
433 433
434 private: 434 private:
435 Lock list_lock_; // Protects the observers_list_. 435 base::Lock list_lock_; // Protects the observers_list_.
436 ObserverList<TabProxyDelegate> observers_list_; 436 ObserverList<TabProxyDelegate> observers_list_;
437 DISALLOW_COPY_AND_ASSIGN(TabProxy); 437 DISALLOW_COPY_AND_ASSIGN(TabProxy);
438 }; 438 };
439 439
440 #endif // CHROME_TEST_AUTOMATION_TAB_PROXY_H_ 440 #endif // CHROME_TEST_AUTOMATION_TAB_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/test/automation/automation_handle_tracker.cc ('k') | chrome/test/automation/tab_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698