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

Unified Diff: chrome/utility/cloud_print/bitmap_image.h

Issue 74873002: Fixed namespace in chrome/utility/cloud_print/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « no previous file | chrome/utility/cloud_print/bitmap_image.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/cloud_print/bitmap_image.h
diff --git a/chrome/utility/cloud_print/bitmap_image.h b/chrome/utility/cloud_print/bitmap_image.h
index ea20e52a5c3673d0ca31053be17a808480edd546..887160e01c5c9fba7088f8e927fd362e56211d70 100644
--- a/chrome/utility/cloud_print/bitmap_image.h
+++ b/chrome/utility/cloud_print/bitmap_image.h
@@ -7,7 +7,7 @@
#include "base/memory/scoped_ptr.h"
-namespace printing {
+namespace cloud_print {
class BitmapImage {
public:
@@ -28,7 +28,7 @@ class BitmapImage {
Colorspace colorspace() const { return colorspace_; }
const uint8* pixel_data() const { return data_.get(); }
- uint8* mutable_pixel_data() { return data_.get(); }
+ uint8* pixel_data() { return data_.get(); }
private:
int32 width_;
@@ -39,6 +39,6 @@ class BitmapImage {
DISALLOW_COPY_AND_ASSIGN(BitmapImage);
};
-} // namespace printing
+} // namespace cloud_print
#endif // CHROME_UTILITY_CLOUD_PRINT_BITMAP_IMAGE_H_
« no previous file with comments | « no previous file | chrome/utility/cloud_print/bitmap_image.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698