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

Unified Diff: chrome/browser/ui/webui/options2/media_galleries_handler.h

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 years, 4 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/webui/options2/media_galleries_handler.h
diff --git a/chrome/browser/ui/webui/options2/media_galleries_handler.h b/chrome/browser/ui/webui/options2/media_galleries_handler.h
deleted file mode 100644
index 4a897d858098d6b6f5c5fc5c4941728cea2cd277..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/options2/media_galleries_handler.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_MEDIA_GALLERIES_HANDLER_H_
-#define CHROME_BROWSER_UI_WEBUI_OPTIONS2_MEDIA_GALLERIES_HANDLER_H_
-
-#include "chrome/browser/prefs/pref_change_registrar.h"
-#include "chrome/browser/ui/webui/options2/options_ui.h"
-#include "content/public/browser/notification_observer.h"
-#include "ui/base/dialogs/select_file_dialog.h"
-
-namespace options {
-
-// Handles messages related to adding or removing media galleries.
-class MediaGalleriesHandler : public OptionsPageUIHandler,
- public ui::SelectFileDialog::Listener {
- public:
- MediaGalleriesHandler();
- virtual ~MediaGalleriesHandler();
-
- // OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(base::DictionaryValue* values) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
- virtual void InitializePage() OVERRIDE;
- virtual void RegisterMessages() OVERRIDE;
-
- // SelectFileDialog::Listener implementation.
- virtual void FileSelected(const FilePath& path, int index, void* params)
- OVERRIDE;
-
- // NotificationObserver implementation.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
-
- private:
- // Handles the "addNewGallery" message (no arguments).
- void HandleAddNewGallery(const base::ListValue* args);
- // Handles "forgetGallery" message. The first and only argument is the id of
- // the gallery.
- void HandleForgetGallery(const base::ListValue* args);
-
- // Called when the list of known galleries has changed; updates the page.
- void OnGalleriesChanged();
-
- PrefChangeRegistrar pref_change_registrar_;
-
- DISALLOW_COPY_AND_ASSIGN(MediaGalleriesHandler);
-};
-
-} // namespace options
-
-#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_MEDIA_GALLERIES_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698