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

Side by Side Diff: chrome/browser/ui/views/apps/app_info_dialog/app_info_dialog_views.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_
7 7
8 #include "extensions/browser/extension_registry_observer.h" 8 #include "extensions/browser/extension_registry_observer.h"
9 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 #include "ui/views/view.h" 10 #include "ui/views/view.h"
(...skipping 23 matching lines...) Expand all
34 // Closes the dialog. 34 // Closes the dialog.
35 void Close(); 35 void Close();
36 36
37 void StartObservingExtensionRegistry(); 37 void StartObservingExtensionRegistry();
38 void StopObservingExtensionRegistry(); 38 void StopObservingExtensionRegistry();
39 39
40 // Overridden from extensions::ExtensionRegistryObserver: 40 // Overridden from extensions::ExtensionRegistryObserver:
41 virtual void OnExtensionUninstalled( 41 virtual void OnExtensionUninstalled(
42 content::BrowserContext* browser_context, 42 content::BrowserContext* browser_context,
43 const extensions::Extension* extension, 43 const extensions::Extension* extension,
44 extensions::UninstallReason reason) OVERRIDE; 44 extensions::UninstallReason reason) override;
45 virtual void OnShutdown(extensions::ExtensionRegistry* registry) OVERRIDE; 45 virtual void OnShutdown(extensions::ExtensionRegistry* registry) override;
46 46
47 // UI elements of the dialog. 47 // UI elements of the dialog.
48 views::View* dialog_header_; 48 views::View* dialog_header_;
49 views::ScrollView* dialog_body_; 49 views::ScrollView* dialog_body_;
50 views::View* dialog_footer_; 50 views::View* dialog_footer_;
51 51
52 Profile* profile_; 52 Profile* profile_;
53 std::string app_id_; 53 std::string app_id_;
54 extensions::ExtensionRegistry* extension_registry_; 54 extensions::ExtensionRegistry* extension_registry_;
55 55
56 DISALLOW_COPY_AND_ASSIGN(AppInfoDialog); 56 DISALLOW_COPY_AND_ASSIGN(AppInfoDialog);
57 }; 57 };
58 58
59 #endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_ 59 #endif // CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_DIALOG_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698