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

Side by Side Diff: chrome/browser/chromeos/bluetooth/bluetooth_pairing_dialog.h

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_
6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_ 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 28 matching lines...) Expand all
39 // NOTE: This function deletes this object at the end. 39 // NOTE: This function deletes this object at the end.
40 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE; 40 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
41 virtual void OnCloseContents( 41 virtual void OnCloseContents(
42 content::WebContents* source, bool* out_close_dialog) OVERRIDE; 42 content::WebContents* source, bool* out_close_dialog) OVERRIDE;
43 virtual bool ShouldShowDialogTitle() const OVERRIDE; 43 virtual bool ShouldShowDialogTitle() const OVERRIDE;
44 virtual bool HandleContextMenu( 44 virtual bool HandleContextMenu(
45 const content::ContextMenuParams& params) OVERRIDE; 45 const content::ContextMenuParams& params) OVERRIDE;
46 46
47 private: 47 private:
48 gfx::NativeWindow parent_window_; 48 gfx::NativeWindow parent_window_;
49 DictionaryValue device_data_; 49 base::DictionaryValue device_data_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(BluetoothPairingDialog); 51 DISALLOW_COPY_AND_ASSIGN(BluetoothPairingDialog);
52 }; 52 };
53 53
54 } // namespace chromeos 54 } // namespace chromeos
55 55
56 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_ 56 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_PAIRING_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/contacts/gdata_contacts_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698