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

Unified Diff: chrome/browser/ui/cocoa/simple_content_exceptions_window_controller.h

Issue 6294008: [Mac] Organize some files into chrome/browser/ui/cocoa/content_settings/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/simple_content_exceptions_window_controller.h
===================================================================
--- chrome/browser/ui/cocoa/simple_content_exceptions_window_controller.h (revision 71852)
+++ chrome/browser/ui/cocoa/simple_content_exceptions_window_controller.h (working copy)
@@ -1,38 +0,0 @@
-// Copyright (c) 2010 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 <Cocoa/Cocoa.h>
-
-#import "base/mac/cocoa_protocols.h"
-#include "base/scoped_ptr.h"
-#include "chrome/browser/remove_rows_table_model.h"
-#import "chrome/browser/ui/cocoa/table_model_array_controller.h"
-
-class RemoveRowsObserverBridge;
-
-// Controller for the geolocation exception dialog.
-@interface SimpleContentExceptionsWindowController : NSWindowController
- <NSWindowDelegate> {
- @private
- IBOutlet NSTableView* tableView_;
- IBOutlet NSButton* removeButton_;
- IBOutlet NSButton* removeAllButton_;
- IBOutlet NSButton* doneButton_;
- IBOutlet TableModelArrayController* arrayController_;
-
- scoped_ptr<RemoveRowsTableModel> model_;
-}
-
-// Shows or makes frontmost the exceptions window.
-// Changes made by the user in the window are persisted in |model|.
-// Takes ownership of |model|.
-+ (id)controllerWithTableModel:(RemoveRowsTableModel*)model;
-
-// Sets the minimum width of the sheet and resizes it if necessary.
-- (void)setMinWidth:(CGFloat)minWidth;
-
-- (void)attachSheetTo:(NSWindow*)window;
-- (IBAction)closeSheet:(id)sender;
-
-@end

Powered by Google App Engine
This is Rietveld 408576698