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

Unified Diff: chrome/browser/ui/cocoa/find_pasteboard.mm

Issue 7149013: Remove most of the remaining test dependencies (other than chrome/test). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 | « chrome/browser/ui/cocoa/find_pasteboard.h ('k') | chrome/browser/ui/cocoa/find_pasteboard_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/find_pasteboard.mm
===================================================================
--- chrome/browser/ui/cocoa/find_pasteboard.mm (revision 88946)
+++ chrome/browser/ui/cocoa/find_pasteboard.mm (working copy)
@@ -1,82 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#import "chrome/browser/ui/cocoa/find_pasteboard.h"
-
-#include "base/logging.h"
-#include "base/sys_string_conversions.h"
-
-NSString* kFindPasteboardChangedNotification =
- @"kFindPasteboardChangedNotification_Chrome";
-
-@implementation FindPasteboard
-
-+ (FindPasteboard*)sharedInstance {
- static FindPasteboard* instance = nil;
- if (!instance) {
- instance = [[FindPasteboard alloc] init];
- }
- return instance;
-}
-
-- (id)init {
- if ((self = [super init])) {
- findText_.reset([[NSString alloc] init]);
-
- // Check if the text in the findboard has changed on app activate.
- [[NSNotificationCenter defaultCenter]
- addObserver:self
- selector:@selector(loadTextFromPasteboard:)
- name:NSApplicationDidBecomeActiveNotification
- object:nil];
- [self loadTextFromPasteboard:nil];
- }
- return self;
-}
-
-- (void)dealloc {
- // Since this is a singleton, this should only be executed in test code.
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- [super dealloc];
-}
-
-- (NSPasteboard*)findPboard {
- return [NSPasteboard pasteboardWithName:NSFindPboard];
-}
-
-- (void)loadTextFromPasteboard:(NSNotification*)notification {
- NSPasteboard* findPboard = [self findPboard];
- if ([[findPboard types] containsObject:NSStringPboardType])
- [self setFindText:[findPboard stringForType:NSStringPboardType]];
-}
-
-- (NSString*)findText {
- return findText_;
-}
-
-- (void)setFindText:(NSString*)newText {
- DCHECK(newText);
- if (!newText)
- return;
-
- DCHECK([NSThread isMainThread]);
-
- BOOL needToSendNotification = ![findText_.get() isEqualToString:newText];
- if (needToSendNotification) {
- findText_.reset([newText copy]);
- NSPasteboard* findPboard = [self findPboard];
- [findPboard declareTypes:[NSArray arrayWithObject:NSStringPboardType]
- owner:nil];
- [findPboard setString:findText_.get() forType:NSStringPboardType];
- [[NSNotificationCenter defaultCenter]
- postNotificationName:kFindPasteboardChangedNotification
- object:self];
- }
-}
-
-@end
-
-string16 GetFindPboardText() {
- return base::SysNSStringToUTF16([[FindPasteboard sharedInstance] findText]);
-}
« no previous file with comments | « chrome/browser/ui/cocoa/find_pasteboard.h ('k') | chrome/browser/ui/cocoa/find_pasteboard_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698